Compare commits

...

2 Commits

Author SHA1 Message Date
Asif Bacchus d8af0ecfc9 add custom fonts 2019-06-22 09:46:27 -06:00
Asif Bacchus 2eb50b55d8 img max width to prevent clipping on small screens 2019-06-22 09:46:11 -06:00
3 changed files with 20 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -85,22 +85,39 @@ styles for this page
--------------------
*/
/* define our fonts */
@font-face {
font-family: 'Open Sans Condensed';
font-weight: bold;
src: url(/errorpages/fonts/opensanscondensed-bold.ttf) format("truetype");
}
@font-face {
font-family: 'Open Sans';
font-weight: normal;
src: url(/errorpages/fonts/opensans-regular.ttf) format("truetype");
}
body {
flex-direction: column;
font-family: 'Open Sans', sans-serif;
align-items: center;
background-color: #323232;
color: #9D9B9B;
display: flex;
flex-direction: column;
padding: 2rem;
}
h1 {
font-size: 7rem;
font-family: 'Open Sans Condensed';
font-size: 7rem;
}
img {
margin: 2rem 0;
max-height: 50vh;
max-height: 50vh;
max-width: 85vw;
}
p {