odin-default-css-exercises/grid/01-grid-layout-1/style.css

40 lines
486 B
CSS
Raw Normal View History

2022-01-05 18:24:41 +00:00
.container {
text-align: center;
}
.container div {
padding: 15px;
font-size: 32px;
font-family: Helvetica;
font-weight: bold;
color: white;
border-radius: 15px;
}
.header {
background-color: #FFDE22;
}
.sidebar {
background-color: #FF7755;
}
.nav {
background-color: #00DDFF;
}
.article {
background-color: #bccbde;
}
.article p {
font-size: 18px;
font-family: sans-serif;
color: white;
text-align: left;
}
.footer {
background-color: #393f4d;
}