-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
39 lines (36 loc) · 843 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
body {
background: #1E3266;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
div {
display: flex;
}
a {
margin: 0 10px;
border-radius: 50%;
box-sizing: border-box;
background: none;
width: 100px;
height: 100px;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
transition: 0.7s;
font-size: 2.5em;
color: var(--color);
}
/*-webkit-box-reflect: below 5px linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.4));
*/
a:hover {
background: var(--color);
color: #050801;
box-shadow:
0 0 5px var(--color),
0 0 25px var(--color),
0 0 50px var(--color),
0 0 200px var(--color);
}