-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
67 lines (66 loc) · 1.09 KB
/
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
59
60
61
62
63
64
65
66
67
::-webkit-scrollbar{
width: 0;
height: 0;
}
body {
background-color: #251f1f;
}
#coloured-part {
width: 200px;
height: 200px;
border: none;
background: linear-gradient(
20deg,
#ffdc80 25%,
#fcaf45,
#f77737,
#f56040,
#fd1d1d,
#e1306c,
#c13584,
#833ab4,
#5b51d8,
#405de6
);
border-radius: 40px;
position: relative;
top: 12rem;
left: 13rem;
box-shadow: 0 0 70px #fd1d1d, 0 0 70px #405de6, 0 0 70px #833ab4;
}
#white-circle{
width: 20px;
height: 20px;
border-radius: 50px;
background-color: white;
position: relative;
top: 47px;
left: 134px;
}
.white-part {
width: 130px;
height: 130px;
border-radius: 40px;
border: 10px solid white;
position: relative;
top: 6px;
left: 25px;
}
#lense{
width: 60px;
height: 60px;
border-radius: 50px;
border: 10px solid white;
position: relative;
top: 24px;
left: 25px;
}
.text{
font-family: sans-serif;
color: white;
font-size: 70px;
font-weight: bold;
position: relative;
top: 7vh;
left: 27rem;
}