add custom fonts

This commit is contained in:
Asif Bacchus 2019-06-22 09:46:27 -06:00
parent 2eb50b55d8
commit d8af0ecfc9
3 changed files with 18 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -85,17 +85,33 @@ 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 {