lorescape/static/css/custom.css

59 lines
926 B
CSS
Raw Permalink Normal View History

2020-10-14 21:31:14 +00:00
@font-face {
font-family: 'PressStart';
src: url('/fonts/PressStart/PressStart2P-Regular.ttf');
}
@font-face {
font-family: 'Dosis';
src: url('/fonts/Dosis/ShadowsIntoLight-Regular.ttf');
}
@font-face {
font-family: 'Dosis';
src: url('/fonts/Dosis/Dosis-VariableFont_wght.ttf');
}
.list-page, .single-page {
background-color: #e6e6fa;
}
h1, h2, h3, h4, h5, h6 {
font-family: Dosis;
}
body, .submitted, .tags, .navbar {
font-family: Dosis;
}
body p {
font-size: 1.3em;
}
.submitted, .tags {
font-size: 1.3em;
color: black;
}
.navbar {
font-size: 1.3em;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
padding: 12px 16px;
z-index: 1;
}
.dropdown:hover .dropdown-content {
display: block;
}