odin-css-grid-practice/01-grid-layout-1/style.css

48 lines
589 B
CSS
Raw Normal View History

2024-01-25 22:19:33 +00:00
body,
html {
height: 100%;
margin: 0;
}
.container {
text-align: center;
height: 100%;
padding: 16px;
box-sizing: border-box;
}
.container div {
padding: 15px;
font-size: 32px;
font-family: Helvetica;
font-weight: bold;
color: white;
border-radius: 15px;
}
.header {
background-color: #006157;
}
.sidebar {
background-color: #005B94;
}
.nav {
background-color: #642cde;
}
.article {
background-color: #7E1DC3;
}
.footer {
background-color: #393f4d;
}
.article p {
font-size: 18px;
font-family: sans-serif;
color: white;
text-align: left;
}