-
Notifications
You must be signed in to change notification settings - Fork 11
/
button.css
39 lines (35 loc) · 949 Bytes
/
button.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
/* this is used to style the toggle button */
.dark input {
-webkit-appearance: none;
position: relative;
width: 50px;
height: 25px;
background-image: url(https://i.postimg.cc/857jHw2q/Screenshot-2020-04-16-at-1-07-06-PM.png);
background-size: cover;
border-radius: 50px;
outline: none;
transition: background-image .90s;
box-shadow: 0px 2px 5px 1px gray;
float: left;
}
.dark input:before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 25px;
width: 25px;
background-color: navy;
border-radius: 50px;
transition: all .9s;
background-color: #F7CA33;
}
.dark input:checked {
background-image: url(https://i.postimg.cc/Hn0nstVK/Screenshot-2020-04-16-at-1-07-19-PM.png);
transition: background-image .90s;
}
.dark input:checked:before {
transform: translate(100%);
transition: all .9s;
background-color: #ECF0F3;
}