-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
117 lines (102 loc) · 2.03 KB
/
style.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
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
@font-face {
font-family: "Helvetica Thin";
src: url("HELVETICANEUE-THIN.OTF")
}
@font-face {
font-family: "Helvetica";
src: url("HELVETICA.OTF");
}
a {
color: #fff;
}
h1 {
text-transform: uppercase;
font-size: 35pt;
font-family: "Helvetica";
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-40%, -50%);
}
.headlink {
position: absolute;
top: 30px;
}
.headlink a {
font-size: 35pt;
text-decoration: none;
font-family: "Helvetica Thin";
color: #ccc;
}
.headlink a:hover {
color: #fff;
}
.hashtag {
font-family: "Helvetica";
font-weight: 300;
}
.button {
font-family: "Helvetica";
color: #1E88E5;
padding: 10px 20px;
border: 0px;
border-radius: 10px;
text-decoration: none;
background-color: #fff;
}
body {
height: 100vh;
background-image: url('header-bg.jpg');
width: 100%;
min-height:100%;
background-size: cover;
background-position: center bottom;
overflow: hidden;
font-size: 30pt;
font-family: "Helvetica Thin";
color: #fff;
}
@media only screen and (min-width:0px) and (max-width:500px) {
body {
font-size: 15pt;
font-family: "Helvetica Thin";
color: #fff;
}
h1 {
text-transform: uppercase;
font-size: 13pt;
font-family: "Helvetica";
}
.center {
position: none;
top: 0%;
left: 0%;
transform: translate(0%, 0%);
padding:3em;
}
}
@media only screen and (min-width:500px) and (max-width:770px) {
body {
font-size: 15pt;
font-family: "Helvetica Thin";
color: #fff;
}
h1 {
text-transform: uppercase;
font-size: 15pt;
font-family: "Helvetica";
}
.center {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
}
@media only screen and (min-width:1100px) and (max-width:2200px) {
.center {
transform: translate(-30%, -50%);
}
}