shared-assets/css/main.css

78 lines
1013 B
CSS
Raw Normal View History

2020-05-29 16:13:08 +00:00
/* Fonts */
@font-face {
font-family: roboto;
src: url(/assets/fonts/Roboto-Regular.ttf)
}
@font-face {
font-family: overpass;
src: url(/assets/fonts/OpenSans-Regular.ttf)
}
/* Element styling */
html {
background-color: #212121;
color: #ffffff;
font-family: Overpass;
}
footer {
width: 100%;
}
h1, h2, h3 {
font-family: Roboto;
margin-bottom: 2px;
}
a {
color: white;
}
ul {
margin-top: 2px;
}
/* Layouting */
.container {
display: flex;
justify-content: center;
width: 100%;
}
.horizontal {
flex-direction: row;
}
.vertical {
display: flex;
flex-direction: column;
}
.subbar-link {
padding: 5px;
}
.title-sub {
margin-top: 0px;
margin-bottom: 10px;
}
.title-sub-subbar {
margin-top: -20px;
}
/* Text styling */
.highlight {
background-color: #373737;
padding: 4px;
}
.quote {
border-left: 2px;
border-left-style: solid;
border-color: gray;
padding-left: 4px;
font-style: italic;
}