-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (53 loc) · 929 Bytes
/
Copy pathstyle.css
File metadata and controls
70 lines (53 loc) · 929 Bytes
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
*{
box-sizing: border-box;
margin:0;
padding:0;
}
.main-container{
display:flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
height: 8.5rem;
width: 18rem;
margin:2rem auto;
}
#check{
padding:0;
margin:0;
display: none;
}
label{
position: relative;
display: block;
width: 100%;
height: 100%;
background-color: #221d1d7e;
border:1px solid black;
border-radius: 8.5rem;
}
label::before{
content:'';
position: absolute;
display: block;
top:0.2rem;
left:0.4rem;
height:8rem;
width:8rem;
background-color: black;
border-radius: 50%;
transition: all 0.5s ease-in-out;
}
input:checked + label{
background-color: lightblue;
}
input:checked + label::before{
left:9.52rem;
background-color: green;
}
.dark-mode{
background-color: black;
color:white;
}