-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
hf.css
139 lines (138 loc) · 2.06 KB
/
hf.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
html {
color: white;
background: #0288d1 url("spirals.png");
scroll-behavior: smooth;
}
body {
position: relative;
margin: 0 8px;
padding: 0 10px 20px;
}
html,
button,
select,
input {
font-family: "Marcellus", serif;
font-size: 16px;
}
input,
select {
background-color: white;
}
h1 {
display: inline-block;
margin: 10px 0 20px 10px;
min-width: 350px;
}
h3 {
margin-top: 40px;
}
p {
color: #c6d9f0;
}
a {
color: #c6d9f0;
transition: color 0.5s 0.05s;
&:hover {
color: white;
}
}
.num {
width: 6em;
}
select {
position: absolute;
top: 20px;
right: 10px;
font-size: 16px;
}
input,
select {
padding: 4px 5px;
}
.footer {
margin: 20px 0 20px 20px;
color: #c6d9f0;
transition: color 0.5s;
> p {
color: white;
> a {
color: #ffb74d;
}
}
}
#header {
position: sticky !important;
top: 0;
min-height: 70px;
transition: min-height 0.3s 0.2s;
overflow: hidden;
background: #0288d1 url("spirals.png");
border-bottom: 1px solid #c6d9f0;
padding-top: 5px;
z-index: 100;
a:hover {
color: #ffb74d;
}
.nav {
position: absolute;
bottom: -20px;
left: 10px;
transition: bottom 0.4s 0.5s;
white-space: nowrap;
&.fnav {
> div {
position: absolute;
top: -20px;
cursor: pointer;
&:hover {
color: #ffb74d;
}
}
}
> div {
display: inline-block;
}
> a {
margin-right: 10px;
text-decoration: none;
&:hover {
color: #ffb74d;
}
}
}
&.w-nav {
position: relative;
&:hover {
min-height: 80px;
.nav {
bottom: 2px;
}
}
#mplay {
position: absolute;
top: 25px;
right: 0;
display: block;
margin-left: 30px;
> a {
text-decoration: none;
}
}
#scale {
display: inline-block;
}
#stop {
transform: translateY(-80px);
}
}
}
@media only screen and (max-width: 600px) {
h1 {
font-size: 30px;
margin-right: 120px;
}
#mplay {
display: none !important;
}
}