29 lines
650 B
CSS
29 lines
650 B
CSS
@font-face {
|
|
font-family: 'Fredoka One';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('Fredoka One'), local('FredokaOne-Regular'), url(/css/FredokaOne.ttf) format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: 'PT Serif';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
src: local('PT Serif'), local('PTSerif-Regular'), url(/css/PTSerif.ttf) format('truetype');
|
|
}
|
|
h1, h2, h3, h4, h5, h6, .navbar-brand, .title {
|
|
font-family: 'Fredoka One', cursive;
|
|
}
|
|
p, div {
|
|
font-family: 'PT Serif', serif;
|
|
}
|
|
a {
|
|
text-decoration: none;
|
|
}
|
|
body {
|
|
background: url(/img/bright_squares.png) repeat 0 0;
|
|
}
|
|
iframe {
|
|
width: 100%;
|
|
height: 1080px;
|
|
border: none;
|
|
}
|