Files
frontend/index.css
2021-12-15 13:44:34 +00:00

75 lines
1.0 KiB
CSS

body {
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
background-color: #03071e;
color: #EAE2B7;
}
a {
color: inherit;
font-size: 150%;
text-decoration: none;
}
h3 {
font-size: 250%;
}
p {
font-size: 175%;
}
.articles {
margin: auto;
width: 50%;
padding: 10px;
font-family: 'Roboto', sans-serif;
}
.article:hover {
color: white;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
font-family: 'Roboto', sans-serif
}
.navigation {
background-color: inherit;
color: inherit;
font-family: 'Roboto', sans-serif;
width: 100%;
height: 100px;
display: flex;
align-items: center;
justify-content: space-between;
}
.navigation a {
padding: 2%;
font-size: 250%;
font-weight: bolder;
}
.foot {
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
}
.foot a {
font-family: "Roboto", sans-serif;
font-weight: bolder;
padding-left: 20%;
padding-right: 20%;
}
/*# sourceMappingURL=index.css.map */