blob: cc5eb68a50a3d1b8a4531baa2073e5698f5f4177 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
@font-face {
font-family: 'terminus'; /*a name to be used later*/
src: url('/fonts/terminus.ttf'); /*URL to font*/
}
@font-face {
font-family: 'fixedsys'; /*a name to be used later*/
src: url('/fonts/FSEX300.ttf'); /*URL to font*/
}
header *{
display: inline-block;
vertical-align: middle;
}
.title {
font-size: 36px;
vertical-align: middle;
font-family: fixedsys;
}
body {
background-image: url("tile1.jpg");
background-repeat: repeat;
font-family: terminus;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.nav {
text-align: center;
}
.fst {
font-size: 150%;
}
.sec {
margin-left: 20px;
font-size: 150%;
}
|