2025-01-14 20:00:36 -08:00
|
|
|
div.cs-title {
|
2024-12-10 11:07:58 -08:00
|
|
|
background-image: url("/img/colormatic_banner.svg");
|
2024-11-26 14:51:24 -08:00
|
|
|
background-size: cover;
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
height: 300px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2025-01-14 20:00:36 -08:00
|
|
|
div.cs-title h1 {
|
2024-11-26 14:51:24 -08:00
|
|
|
color: white;
|
|
|
|
background-color: #00000088;
|
2024-11-26 20:10:55 -08:00
|
|
|
padding: 28px 38px;
|
2024-11-26 14:51:24 -08:00
|
|
|
border-radius: 16px;
|
2025-01-14 20:00:36 -08:00
|
|
|
font-size: 300%;
|
2024-11-26 20:10:55 -08:00
|
|
|
box-shadow: 1px 1px 8px #00000033;
|
2024-11-26 14:51:24 -08:00
|
|
|
backdrop-filter: blur(5px);
|
|
|
|
}
|
|
|
|
|
2024-11-24 13:28:06 -08:00
|
|
|
div.project-grid-container {
|
|
|
|
display: flex;
|
|
|
|
width: 80%;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
2025-01-14 13:40:43 -08:00
|
|
|
@media screen and (max-width: 900px) {
|
2024-11-24 13:28:06 -08:00
|
|
|
div.project-grid-container {
|
|
|
|
width: 90%;
|
|
|
|
}
|
2024-11-26 20:10:55 -08:00
|
|
|
|
2025-01-14 20:00:36 -08:00
|
|
|
div.cs-title {
|
2024-11-26 20:10:55 -08:00
|
|
|
height: 200px;
|
|
|
|
}
|
|
|
|
|
2025-01-14 20:00:36 -08:00
|
|
|
div.cs-title h1 {
|
|
|
|
font-size: 200%;
|
2024-11-26 20:10:55 -08:00
|
|
|
}
|
2024-11-24 13:28:06 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
div.project-grid-container div.project-grid-box {
|
2025-01-04 19:13:47 -08:00
|
|
|
flex: 1;
|
2024-11-24 13:28:06 -08:00
|
|
|
color: #383c3f;
|
|
|
|
margin: 16px;
|
|
|
|
border: solid 1px #00000033;
|
|
|
|
border-radius: 8px;
|
|
|
|
box-shadow: 1px 1px 8px #00000033;
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
2025-01-04 19:13:47 -08:00
|
|
|
color: var(--text-color);
|
2024-11-24 13:28:06 -08:00
|
|
|
min-width: 40%;
|
|
|
|
max-width: 50%;
|
2025-01-01 09:38:35 -08:00
|
|
|
background-color: #ffffff22;
|
|
|
|
backdrop-filter: blur(3px);
|
2024-11-24 13:28:06 -08:00
|
|
|
}
|
|
|
|
|
2024-11-26 20:10:55 -08:00
|
|
|
div.project-grid-container div.project-grid-box h1 a {
|
|
|
|
color: var(--text-color);
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.project-grid-container div.project-grid-box div.project-grid-box-contents { /* Yes, this absurdly long element selector is a joke */
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.project-grid-container div.project-grid-box img {
|
|
|
|
max-width: 150px;
|
|
|
|
max-height: 100px;
|
|
|
|
margin: 12px;
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
2025-01-14 13:40:43 -08:00
|
|
|
@media screen and (max-width: 900px) {
|
2024-11-24 13:28:06 -08:00
|
|
|
div.project-grid-container div.project-grid-box {
|
|
|
|
min-width: 90%;
|
|
|
|
max-width: 90%;
|
|
|
|
}
|
|
|
|
|
2024-11-26 20:10:55 -08:00
|
|
|
div.project-grid-container div.project-grid-box img {
|
|
|
|
max-width: 100px;
|
|
|
|
}
|
2024-11-24 13:28:06 -08:00
|
|
|
}
|