-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (99 loc) · 1.93 KB
/
Copy pathstyle.css
File metadata and controls
115 lines (99 loc) · 1.93 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
104
105
106
107
108
109
110
111
112
113
114
115
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
padding: 2rem;
}
.container {
max-width: 500px;
background: white;
padding: 2rem;
border-radius: 10px;
margin: 0 auto;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
form {
display: flex;
flex-direction: column;
}
label {
margin-top: 1rem;
font-weight: bold;
}
select, input[type="checkbox"] {
margin-top: 0.5rem;
}
button {
margin-top: 1.5rem;
padding: 0.5rem;
background: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
#qrcode {
margin-top: 2rem;
text-align: center;
}
.counterContainer{
display: flex;
align-items: center;
justify-content: center;
margin-top: 1rem;
}
.counterContainer button{
padding: 0.5rem 1rem;
font-size: 1.5rem;
cursor: pointer;
height: 40px;
display: flex;
align-items: center;
margin-top : -0.05rem;
}
.counterContainer input{
width: 50px;
text-align: center;
font-size: 1.2rem;
margin: 0 10px;
padding: 5px;
height: 40px;
border-radius: 5px;
border: 1px solid
}
.toggle-container{
display: flex;
align-items: center;
justify-content: center;
margin-top: 1rem;
}
.toggle-checkbox
{
display:none;
}
.toggle-label
{
width: 50px;
height: 25px;
background-color: #ccc;
border-radius: 25px;
position: relative;
cursor: pointer;
transition: background-color 0.3s ease;
}
.toggle-label::before {
content: '';
position: absolute;
width: 18px;
height: 18px;
border-radius: 50%;
background-color: white;
top: 3px;
left: 3px;
transition: transform 0.3s ease;
}
.toggle-checkbox:checked +.toggle-label{
background-color: #4caf50;
}
.toggle-checkbox:checked + .toggle-label::before {
transform: translateX(25px);
}