-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
104 lines (86 loc) · 1.39 KB
/
index.css
File metadata and controls
104 lines (86 loc) · 1.39 KB
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
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Montserrat', sans-serif;
background-color: #3e4560;
color: white;
user-select: none;
}
.container {
display: block;
padding: 0 10px;
max-width: 320px;
margin: 30px auto;
}
.title {
margin: 20px 0;
color: #d6d5ac;
}
p {
margin: 5px 0;
}
label {
display: block;
font-size: 20px;
margin-bottom: 5px;
}
input {
margin-bottom: 15px;
}
input[type="range"] {
cursor : pointer;
}
input[type="text"]{
padding: 5px 10px;
border-radius: 3px;
border: none;
}
.box {
display: flex;
justify-content: center;
align-items: center;
height: 100px;
width: 100%;
background-color: #c6d5ac;
margin-bottom: 25px;
text-shadow: 1px 1px 4px black;
}
#alteredColor{
color: black;
}
.toggle-text {
font-size: 18px;
}
.toggle {
display: flex;
align-items: center;
margin-bottom: 10px
}
.toggle-btn {
height: 30px;
width: 60px;
background-color: gray;
border-radius: 30px;
padding: 5px;
margin: 0 10px;
cursor : pointer;
}
.inner-circle {
width: 30px;
height: 30px;
border-radius: 50%;
background-color: white;
transition: all 250ms;
}
.toggle-btn.toggled > .inner-circle {
transform: translateX(30px);
background-color: #333;
}
.unselected {
opacity: 0.25;
}
.freepik > a {
color: red;
}