odin-css-grid-practice/03-grid-layout-3/style.css

141 lines
2.0 KiB
CSS
Raw Permalink Normal View History

* {
margin: 0;
padding: 0;
}
.container {
text-align: center;
2024-01-26 12:05:45 +00:00
display: grid;
grid-template-columns: 1fr 4fr;
grid-template-rows: ;
gap: 4px;
grid-template-areas:
"header header"
"sidebar nav"
"sidebar article"
"footer footer";
}
.container div {
padding: 15px;
font-size: 32px;
font-family: Helvetica;
font-weight: bold;
color: white;
}
.header {
background-color: #393f4d;
2024-01-26 12:05:45 +00:00
grid-area: header;
display: grid;
grid-template-columns: 1fr 2fr;
align-items: center;
}
.logo {
justify-self: start;
}
.menu ul {
display: grid;
list-style: none;
grid-template-columns: repeat(4, 1fr);
}
.menu ul,
.menu li {
font-size: 16px;
}
.sidebar {
background-color: #C50208;
2024-01-26 12:05:45 +00:00
grid-area: sidebar;
display: grid;
gap: 50px;
}
.sidebar .photo {
background-color: white;
color: black;
font-size: 12px;
font-weight: normal;
border-radius: 10px;
}
.sidebar .side-content {
background-color: white;
color: black;
font-size: 16px;
font-weight: normal;
}
2024-01-26 12:05:45 +00:00
.sidebar > * {
align-items: center;
display: grid;
}
.nav {
background-color: #C50208;
2024-01-26 12:05:45 +00:00
grid-area: nav;
}
.nav ul {
display: grid;
/* gap: 50px; */
list-style: none;
grid-template-columns: repeat(3, 1fr);
}
.nav ul li {
font-size: 16px;
text-transform: uppercase;
}
.article {
background-color: #bccbde;
2024-01-26 12:05:45 +00:00
grid-area: article;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
grid-auto-rows: 230px;
}
.article p {
font-size: 18px;
font-family: sans-serif;
color: white;
text-align: left;
2024-01-26 12:05:45 +00:00
margin: 0 0 10px 0;
}
.article .card {
background-color: #FFFFFF;
color: black;
text-align: center;
2024-01-26 12:05:45 +00:00
/* padding: 20px; */
/* box-sizing: border-box; */
height: 200px;
}
.card p {
color: black;
font-weight: normal;
font-size: 14px;
}
.card .title {
font-size: 18px;
text-align: center;
}
.footer {
2024-01-26 12:05:45 +00:00
grid-area: footer;
background-color: #393f4d;
}
.footer p {
font-size: 13px;
font-weight: normal;
}