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
|
/* splash */
html, body {
overflow: hidden;
width: 100%; height: 100%;
}
header {
position: absolute;
background: transparent;
box-shadow: none;
}
footer {
background: transparent;
position: absolute;
bottom: 0; left: 0;
padding: 20px;
}
footer div {
z-index: 2;
}
header, footer {
text-shadow: 0 0 5px #191919, 0 0 5px #191919, 0 0 5px #191919;
}
header > div a,
footer > div {
background: rgba(25, 25, 25, 0.8);
padding: 3px;
border-radius: 2px;
}
header .links a.activeLink {
color: white;
border-bottom-color: white;
}
.splash {
}
#three_container {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
}
.about.open {
pointer-events: auto;
opacity: 1;
cursor: pointer;
}
.about {
position: absolute;
top: 0; left: 0;
width: 100%; height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(0,0,0,0.5);
opacity: 0;
pointer-events: none;
transition: opacity 400ms;
overflow-y: scroll;
}
.about .inner {
padding: 40px;
background: #000;
color: #eee;
max-width: 600px;
line-height: 1.5;
cursor: text;
}
.about .inner b {
color: #fff;
}
.about a {
color: #fff;
}
@media screen and (max-width: 700px) {
header, footer {
transition: background 0.4s;
}
.modalOpen header,
.modalOpen footer {
background: rgba(25, 25, 25, 1.0);
}
header .slogan {
padding-left: 20px;
}
footer {
display: block;
background: rgba(25, 25, 25, 0.8);
padding: 10px 20px;
}
footer div {
background: transparent;
text-align: center;
width: 100%;
display: block;
padding: 0;
}
header .links {
padding: 4px 5px 0 0;
}
header .links span,
header .links a {
margin-right: 10px;
margin-left: 0px;
font-size: 14px;
}
}
@media screen and (max-height: 500px) {
.about {
display: block;
}
.about .inner {
max-width: 100%;
padding: 20px;
padding-top: 70px;
}
}
|