109 lines
1.7 KiB
CSS
109 lines
1.7 KiB
CSS
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: local("Open Sans");
|
|
src: url('/fonts/opensans-regular-webfont.eot');
|
|
src: url('/fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
|
|
url('/fonts/opensans-regular-webfont.woff2') format('woff2'),
|
|
url('/fonts/opensans-regular-webfont.woff') format('woff'),
|
|
url('/fonts/opensans-regular-webfont.ttf') format('truetype'),
|
|
url('/fonts/opensans-regular-webfont.svg#open_sansregular') format('svg');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
font-display: swap;
|
|
}
|
|
|
|
html {
|
|
/* overflow: hidden; */
|
|
height:50%;
|
|
background-color: #08090C;
|
|
}
|
|
|
|
body {
|
|
max-width: 800px;
|
|
margin: auto;
|
|
padding: 32px;
|
|
background-color: #111318;
|
|
color: #DDDDDD;
|
|
font-family: 'Open Sans', Arial, sans-serif;
|
|
}
|
|
|
|
a:link {
|
|
color: #F47D7B;
|
|
}
|
|
|
|
a:visited {
|
|
color: #F47D7B;
|
|
}
|
|
|
|
a:hover {
|
|
color: #86A3C1;
|
|
}
|
|
|
|
a:active {
|
|
color: #86A3C1;
|
|
}
|
|
|
|
img {
|
|
/*border: 2px solid #F47D7B;*/
|
|
background-color: #111318;
|
|
display: inline-block;
|
|
overflow: hidden;
|
|
vertical-align:text-bottom;
|
|
}
|
|
|
|
.no-list-style {
|
|
list-style: none;
|
|
/* padding: 0; */
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 0;
|
|
}
|
|
|
|
a:focus {
|
|
outline: 2px solid #86A3C1;
|
|
/* outline-offset: 2px; */
|
|
}
|
|
|
|
figure {
|
|
margin: 0;
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
figcaption {
|
|
margin-top: 4px;
|
|
}
|
|
|
|
.link-image {
|
|
display: inline-block;
|
|
width: fit-content;
|
|
height: fit-content;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.buttons {
|
|
font-size: 23px; /* this sucks but i cant find a better way */
|
|
}
|
|
|
|
nav p {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
nav h3 {
|
|
margin-bottom: 0px;
|
|
}
|
|
|
|
/* .buttons img {
|
|
margin: 2px;
|
|
} */
|
|
|
|
::-moz-selection { /* Code for Firefox */
|
|
color: #111318;
|
|
background: #F47D7B;
|
|
}
|
|
|
|
::selection {
|
|
color: #111318;
|
|
background: #F47D7B;
|
|
}
|