-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.css
More file actions
125 lines (109 loc) · 1.86 KB
/
common.css
File metadata and controls
125 lines (109 loc) · 1.86 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
body {
background-color:black;
margin:0px;
padding:0px;
font-family:Arial,sans-serif;
color:white;
font-size:16pt;
}
@media not all and (max-width: 1200px) {
body {
font-size:16pt;
}
}
@media all and (max-width: 1200px) {
@media all and (orientation: portrait) {
body {
font-size:11pt;
}
}
@media all and (orientation: landscape) {
body {
font-size:10pt;
}
}
}
a {
transition:0.4s;
color:#3e33d8;
text-decoration:none;
}
@media all and (any-hover: hover) {
a:hover {
transition:0.4s;
color:#4976f1;
}
}
.header {
background-size:100%;
width:100%;
max-height:56.25vw;
background-position:center top;
height:777px;
display:flex;
justify-content:center;
align-content:center;
flex-direction: column;
text-align:center;
position:relative;
}
.header-fade {
width:100%;
height:77%;
position:absolute;
bottom:0px;
left:0px;
background-image:linear-gradient(rgba(0, 0, 0, 0.0), black);
}
.header-title {
font-family:wf_heroic-condensed-pro_medium,Calibri,"Arial Narrow","Trebuchet MS",Tahoma,Arial,sans-serif;
text-transform:uppercase;
font-weight:bold;
color:white;
padding:5px 20px;
height:80px;
z-index:999;
}
@media not all and (max-width: 1200px) {
.header-title {
font-size:64pt;
}
}
@media all and (max-width: 1200px) {
.header-title {
font-size:24pt;
}
}
.description {
width:80%;
margin:0px auto;
text-align:center;
}
footer {
font-style:italic;
font-size:12pt;
text-align:center;
width:80%;
margin:0px auto;
}
@media not all and (max-width: 1200px) {
footer {
font-size:12pt;
}
}
@media all and (max-width: 1200px) {
@media all and (orientation: portrait) {
footer {
font-size:7pt;
}
}
@media all and (orientation: landscape) {
footer {
font-size:5pt;
}
}
}
hr {
width:77vw;
clear:both;
}