Add initial style.css

This commit is contained in:
Daniel Murphy 2022-01-05 13:24:41 -05:00
parent 578b05dc2d
commit 633ad53a57
1 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,39 @@
.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;
}