-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
70 lines (58 loc) · 981 Bytes
/
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
p {
margin: 0;
padding: 0;
text-overflow: ellipsis;
text-align: center;
overflow: hidden;
max-width: 100%;
}
html, body {
margin: 0;
min-width: 450px;
}
body {
margin-top: 5px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
body > * {
margin-bottom: 5px;
}
body > div {
align-items: center;
justify-content: center;
width: 100%;
}
button, input, body {
font-family: Arial;
font-size: 15px;
}
input[type="number"] {
width: 90%;
}
input {
border-radius: 5px;
border: 1px solid black;
}
body, input, textarea {
background-color: #fff;
color: #000
}
input, textarea {
border-color: rgb(0, 0, 0);
}
@media (prefers-color-scheme: dark) {
body, input, textarea {
background-color: #1e1e1e;
color: rgb(199, 199, 199);
}
input { border: 1px solid white; }
input, textarea {
border-color: rgb(199, 199, 199);
}
::placeholder {
color: rgb(183, 183, 183);
}
}