58 lines
819 B
CSS
58 lines
819 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #03071e;
|
|
}
|
|
|
|
a {
|
|
color: #EAE2B7;
|
|
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;
|
|
}
|
|
|
|
.navigation {
|
|
font-family: 'Roboto', sans-serif
|
|
}
|
|
|
|
.header {
|
|
background-color: #03071e;
|
|
color: #EAE2B7;
|
|
font-family: 'Roboto', sans-serif;
|
|
width: 100%;
|
|
height: 100px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end; }
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-direction: row;
|
|
font-size: 20px;
|
|
list-style: none; }
|
|
ul li {
|
|
padding-right: 30px; }
|
|
|
|
ol {
|
|
display: flex;
|
|
flex-direction: column;
|
|
list-style: georgian; }
|
|
|
|
/*# sourceMappingURL=index.css.map */
|