-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththeme.css
More file actions
68 lines (59 loc) · 1.01 KB
/
Copy paththeme.css
File metadata and controls
68 lines (59 loc) · 1.01 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
body {
background-color: black;
width: 100vw;
margin: 0;
height: 100vh;
}
.textShadow {
text-shadow: 2px 2px 6px black;
}
.background {
position: absolute;
width: 100vw;
margin: 0;
height: 100vh;
z-index: 1;
}
.content {
position: absolute;
width: 100vw;
margin: 0;
height: 100vh;
z-index: 100;
color: white;
}
.content .title {
font-size: 2.5em;
font-weight: bold;
text-transform: uppercase;
text-align: left;
margin-left: 70px;
margin-top: 30px;
}
.links ul {
list-style-type: none;
font-size: 1.5em;
font-weight: bold;
text-shadow: 2px 2px 6px black;
margin: 25px 15px;
width: 500px;
}
.links ul li {
margin: 15px;
width: 100%;
}
.links ul li:hover {
padding-left: 25px;
width: 100%;
transform: scale(1);
transition: 0.25s all ease;
}
.links ul li a {
text-decoration: none;
color: white;
width: 100%;
}
.links ul li .hint {
font-size:.65em;
font-weight: normal;
}