-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhome.css
More file actions
130 lines (111 loc) · 1.96 KB
/
home.css
File metadata and controls
130 lines (111 loc) · 1.96 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
126
127
128
129
130
body {
margin: 0;
font-family: 'Liberation Sans', sans-serif;
color: #FFFFFF;
}
a {
text-decoration: none;
color: #FFFFFF;
}
#background,
#loading {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
header {
position: absolute;
top: 50%;
left: 0;
width: 100%;
text-align: center;
}
@media screen and (max-width: 700px),
screen and (max-height: 500px) {
header {
position: relative;
top: 0;
left: 0;
}
}
header h1 {
display: inline;
font-size: 4em;
text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
header nav {
width: 100%;
}
header nav ul li,
#download ul li {
display: inline-block;
padding: 5px 20px;
font-size: 1.2em;
text-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}
header nav ul li:not(:first-child),
#download ul li:not(:first-child) {
border-left: 1px solid rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 600px) {
header nav ul li,
#download ul li {
display: block;
}
header nav ul li:not(:first-child),
#download ul li:not(:first-child) {
border-left: none;
}
}
header nav ul li a,
#download ul li a {
display: block;
padding: 5px;
border-bottom: 1px solid transparent;
transition-property: border-bottom-color;
transition-duration: 0.5s;
}
header nav ul li a:hover,
#download ul li a:hover {
border-bottom-color: rgba(255, 255, 255, 0.7);
}
#about p {
margin: 10px auto;
padding: 15px;
width: 50%;
background-color: rgba(0, 0, 0, 0.2);
line-height: 1.5em;
font-size: 1.3em;
}
footer {
position: absolute;
right: 10px;
bottom: 10px;
font-size: 0.9em;
}
@media screen and (max-height: 500px) {
footer {
position: relative;
margin-top: 20px;
right: 0;
bottom: 0;
text-align: center;
}
}
footer p {
margin: 0;
text-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}
footer a {
border-bottom: 1px solid transparent;
transition-property: border-bottom-color;
transition-duration: 0.5s;
}
footer a:hover {
border-bottom-color: rgba(255, 255, 255, 0.7);
}
#loading-message {
display: none;
}