-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
82 lines (69 loc) · 1.28 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
73
74
75
76
77
78
79
80
81
82
body {
font-family: Arial, sans-serif;
width: 300px;
padding: 10px;
background-color: #ffffff;
color: #000000;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1 {
font-size: 18px;
}
textarea, input[type="file"] {
width: 290px;
box-sizing: border-box;
margin-bottom: 10px;
padding: 5px;
border: 1px solid #cccccc;
border-radius: 4px;
}
textarea {
resize: vertical;
}
button {
width: 290px;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #45a049;
}
#links {
margin-top: 10px;
}
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
body {
background-color: #333333;
color: #ffffff;
}
textarea, input[type="file"] {
background-color: #444444;
color: #ffffff;
border: 1px solid #666666;
box-sizing: border-box;
}
textarea::placeholder {
color: #ffffff;
}
button {
background-color: #3e8e41;
}
button:hover {
background-color: #357a38;
}
#links {
color: #ffffff;
}
a {
color: #ffffff;
}
}