-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (39 loc) · 703 Bytes
/
Copy pathstyle.css
File metadata and controls
44 lines (39 loc) · 703 Bytes
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
body {
font-family: Arial, sans-serif;
padding: 20px;
margin: 20px;
}
form {
padding: 20px;
margin: 20px;
background-color: #f1f1f1;
}
input, label {
padding: 10px;
margin: 10px;
font-size: 18px;
}
button {
padding: 10px 20px;
margin: 10px;
background-color: #4CAF50;
color: white;
font-size: 18px;
}
#password {
padding: 10px;
margin: 10px;
font-size: 24px;
}
@media (prefers-color-scheme: dark) {
/* Styles for dark mode */
body.dark-mode {
background-color: #333;
color: #fff;
}
form.dark-mode {
background-color: #555;
}
button.dark-mode {
background-color: #111;
}