Add Colormatic Studios page (Work in progress)

This commit is contained in:
2024-11-24 13:28:06 -08:00
parent f96378c859
commit 1a9a12fb0c
7 changed files with 151 additions and 26 deletions

38
css/colormaticstudios.css Normal file
View File

@ -0,0 +1,38 @@
div.project-grid-container {
display: flex;
width: 80%;
margin-left: auto;
margin-right: auto;
flex-wrap: wrap;
justify-content: center;
}
@media screen and (max-width: 800px) {
div.project-grid-container {
width: 90%;
}
}
div.project-grid-container div.project-grid-box {
flex: 1;
color: #383c3f;
margin: 16px;
border: solid 1px #00000033;
border-radius: 8px;
box-shadow: 1px 1px 8px #00000033;
padding: 16px;
text-align: center;
min-width: 40%;
max-width: 50%;
}
@media screen and (max-width: 800px) {
div.project-grid-container div.project-grid-box {
min-width: 90%;
max-width: 90%;
}
}
div.project-grid-container div.project-grid-box div.project-grid-box-contents {
display: flex;
}

View File

@ -1,12 +1,14 @@
:root {
--text-color: #383c3f;
}
body {
font-family: sans-serif;
font-family: "Noto Sans", sans-serif;
}
nav {
display: grid;
grid-template-columns: 1fr min-content 1fr;
/*flex-direction: row;
justify-content: space-between;*/
align-items: center;
padding: 12px;
border-bottom: solid 1px #00000033;
@ -17,19 +19,16 @@ nav {
}
nav .nav-left {
/*justify-content: flex-start;*/
justify-self: left;
grid-column: 1;
}
nav .nav-center {
/*justify-content: center;*/
justify-self: center;
grid-column: 2;
}
nav .nav-right {
/*justify-content: flex-end;*/
justify-self: right;
grid-column: 3;
}
@ -49,11 +48,11 @@ nav ul {
nav a {
padding: 8px;
color: #383c3f;
color: var(--text-color);
text-decoration: none;
}
@media screen and (max-width: 600px) {
@media screen and (max-width: 800px) {
nav {
padding: 6px 0;
}
@ -83,7 +82,7 @@ nav div.inline {
display: flex;
}
@media screen and (max-width: 600px) {
@media screen and (max-width: 800px) {
nav button.responsive-button {
display: block;
}
@ -93,13 +92,13 @@ nav div.inline {
}
main div.heading {
color: #383c3f;
color: var(--text-color);
font-size: 200%;
text-align: center;
}
main div.hero {
color: #383c3f;
color: var(--text-color);
width: 60%;
margin: 16px auto 16px auto;
border: solid 1px #00000033;
@ -109,14 +108,14 @@ main div.hero {
text-align: center;
}
@media screen and (max-width: 600px) {
@media screen and (max-width: 800px) {
main div.hero {
width: 80%;
}
}
main div.hero h1 a {
color: #383c3f;
color: var(--text-color);
text-decoration: none;
}
@ -142,7 +141,7 @@ main img.banner {
box-shadow: 1px 1px 8px #00000033;
}
@media screen and (max-width: 600px) {
@media screen and (max-width: 800px) {
main img.banner {
width: 95%;
border-radius: 12px;
@ -161,7 +160,7 @@ ul.linktree {
width: 30%;
}
@media screen and (max-width: 600px) {
@media screen and (max-width: 800px) {
ul.linktree {
width: 60%;
}
@ -189,7 +188,7 @@ ul.linktree li a { /* Pill button shape */
ul.linktree li a:hover {
cursor: pointer;
background-color: #383c3f
background-color: var(--text-color);
}
div.footer {
@ -197,6 +196,6 @@ div.footer {
}
div.footer p {
color: #383c3f;
color: var(--text-color);
text-align: center;
}