-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.css
More file actions
93 lines (78 loc) · 1.59 KB
/
Copy pathsettings.css
File metadata and controls
93 lines (78 loc) · 1.59 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
body {
font-family: Arial, Helvetica, sans-serif;
line-height: 1.6;
margin: 0%;
padding: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border-radius: 12px;
background-color: #f0aaaa;
background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
}
label {
display: block;
margin-block: 5px;
}
.setting {
margin-bottom: 20px;
}
input[type="range"] {
-webkit-appearance: none;
width: 100%;
background-color: #ddd;
height: 5px;
border-radius: 5px;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #007bff;
cursor: pointer;
}
input[type="range"]:hover::-webkit-slider-thumb {
background-color: #1d0076;
}
.buttons {
display: flex;
justify-content: space-between;
}
button {
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
input[type="checkbox"] {
width: 20px;
height: 20px;
margin-left: 10px;
}
label {
margin-right: 10px;
}
button[type="submit"] {
background-color: #28a745;
color: white;
}
button[type="submit"]:hover {
background-color: #218838;
}
button[type="button"] {
background-color: #ff4d4d;
color: white;
}
button[type="button"]:hover {
background-color: #ff1a1a;
}