..
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 | .fullscreen {
width: 100%;
height: 100vh;
background-image: url("../../assets/assets/background.jpg");
background-size: cover;
background-position: center;
background-repeat: no-repeat;
user-select: none;
}
.floating {
padding: 5%;
position: absolute;
top: 50%;
left: 50%;
width: 40%;
transform: translate(-50%, -50%);
// background-color: #212124;
text-align: center;
color: white;
img {
width: 160px;
height: 160px;
pointer-events: none;
}
p {
font-size: 13px;
}
.themeCircles {
div {
display: inline-block;
width: 30px;
height: 30px;
border-radius: 50%;
margin: 0px 5px;
box-sizing: border-box;
}
.light {
background: white;
}
.dark {
background: #333;
}
.system {
background: linear-gradient(90deg, white, white 50%, #333 50%, #333 50%);
}
.selected {
border: solid 3px #0e43fa;
}
}
.light {
width: 30px;
height: 30px;
background: white;
border-radius: 50%;
}
.dark {
width: 30px;
height: 30px;
background: #333;
border-radius: 50%;
}
.system {
width: 30px;
height: 30px;
background: linear-gradient(90deg, white, white 50%, #333 50%, #333 50%);
border-radius: 50%;
}
}
.btn {
padding: 10px 30px;
text-align: center;
background-color: #0e43fa;
color: white;
border: none;
outline: none;
border-radius: 8px;
font-size: 16px;
font-weight: 500;
position: absolute;
bottom: 100px;
left: 50%;
transform: translateX(-50%);
}
small {
color: white;
font-size: 10px;
position: absolute;
bottom: 40px;
left: 50%;
transform: translateX(-50%);
}
|
|