-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
104 lines (91 loc) · 1.58 KB
/
index.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
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
@import url("tailwond.css");
* {
padding: 0;
margin: 0;
background: none;
border: none;
outline: none;
}
html {
background: #323232;
}
h1 {
font-size: 28px;
}
#reset {
cursor: pointer;
background: #682125;
color: #ff525c;
border: 2px solid #ff525c;
display: flex;
align-items: center;
justify-content: center;
padding: 4px 16px;
border-radius: 4px;
font-size: 16px;
}
.lucide {
fill: #323232;
cursor: pointer;
}
.container {
width: 325px;
padding: 24px 32px;
border: 2px solid #545454;
color: white;
font-family: monospace;
}
.card {
box-sizing: border-box;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
font-size: 16px;
margin-top: -2px;
width: 100%;
position: relative;
user-select: none;
}
input[type="radio"] {
cursor: pointer;
opacity: 0;
}
input[type="radio"]:checked + div {
animation: mymove 1s;
background: #ffffc5;
box-shadow: 0px 0px 87.0912px #ff9a27, 0px 0px 49.7664px #ff9a27, 0px 0px 29.0304px #ff9a27, 0px 0px 14.5152px #ffffc5,
0px 0px 4.1472px #ffffc5, 0px 0px 2.0736px #ffffc5;
border-radius: 237.6px;
}
.radio-check-indicator {
pointer-events: none;
user-select: none;
position: absolute;
top: 4px;
right: 4px;
width: 8px;
height: 8px;
border-radius: 99px;
}
.default {
background: #232323;
border: 2px solid #515151;
box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.25);
color: white;
}
@keyframes mymove {
0% {
opacity: 0;
}
50% {
opacity: 0.75;
}
100% {
opacity: 1;
}
}
.mt-4 {
margin-top: 16px;
}