-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (50 loc) · 964 Bytes
/
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
html, body {
margin: 0;
padding: 0;
font-family: 'abel';
font-weight: 200;
color: white;
}
body {
background: linear-gradient(135deg, #8e2dd2, #4a00e0);
min-height: 100vh;
text-align: center;
}
.main-headings .main-title {
text-transform: uppercase;
letter-spacing: 3px;
font-size: 30px;
}
.hori {
width: 80vw;
max-width: 500px;
box-shadow: 0 0 10px 1px white;
}
.links {
padding: 20px;
}
.heading {
margin-bottom: 20px;
padding: 2px;
display: flex;
justify-content: center;
margin: 0;
}
.link {
color: white;
text-decoration: none;
font-size: 20px;
transition-duration: .3s;
padding: 10px 30px;
}
.link:hover {
letter-spacing: 3px;
text-shadow: 0 0 10px white;
border-right: 20px solid white;
border-left: 2px solid white;
box-shadow: 0 0 20px white inset;
}
.link:hover.link::before {
content: '\276f ';
margin-right: 20px;
}