-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
72 lines (62 loc) · 1.3 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
68
69
70
71
72
@tailwind base;
@tailwind components;
@tailwind utilities;
/**
weak password colors
body color: #3d0c11
password container color: #ED4133
password options color: #2E0808
fair password colors
body color: #4c3801
password container color: #fcba03
password options color: #322501
strong password colors
body color: #3B661D
password container color: #76cc39
password options color: #18290B
**/
body {
background: #3d0c11;
transition: background-color 0.5s;
}
input[type="range"] {
-webkit-appearance: none;
appearance: none;
background: transparent;
cursor: pointer;
width: 92%;
}
input[type="range"]::-webkit-slider-runnable-track {
-webkit-appearance: none;
background: #565856;
height: 10px;
outline: none;
border-radius: 4px;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background-color: #63da73;
background-image: url('./public/key.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 70%;
border: 2px solid #3e3c3c;
border-radius: 50%;
width: 28px;
height: 28px;
margin-top: -9px;
}
.active {
border-color: #7fd470;
}
.animate-rotate {
animation: rotate180 .5s;
}
@keyframes rotate180 {
from {
transform: rotate(0deg);
}
to {
transform: rotate(180deg);
}
}