-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlanding.css
66 lines (62 loc) · 1.15 KB
/
landing.css
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
- Currently activated CSS for board.html
*/
/*font declration*/
@font-face{
font-family: "DINOT-Bold";
src: url(DINOT-Bold.otf);
}
@font-face{
font-family: "DINOT-BoldItalic";
src: url(DINOT-BoldItalic.otf);
}
@font-face{
font-family: "DINOT-CondMediIta";
src: url(DINOT-CondMediIta.otf);
}
@font-face{
font-family: "DINOT-Italic";
src: url(DINOT-Italic.otf);
}
@font-face{
font-family: "DINOT-LightItalic";
src: url(DINOT-LightItalic.otf);
}
@font-face{
font-family: "DINOT";
src: url(DINOT.otf);
}
html {
font-family: "DINOT-Bold", "DINOT-BoldItalic", "DINOT-CondMediIta", "DINOT-Italic", "DINOT-LightItalic", "DINOT";
}
body {
overflow:hidden;
background-color: #FFFFFF;
font-family: "DINOT";
}
.top{
background-color:#009BDF;
height:50vh;
line-height:25vmin;
text-align:center;
display: table;
}
.top a{
font-size:25vmin;
color:white;
vertical-align: middle;
display: table-cell;
}
.bottom{
display: table;
background-color:#FFFFFF;
line-height:25vmin;
height:50vh;
text-align:center;
}
.bottom a{
font-size:25vmin;
color:black;
vertical-align: middle;
display: table-cell;
}