-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (70 loc) · 1.31 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
83
84
85
86
html, body {
margin: 0;
padding: 0;
background-color: #e1e1e1;
font-family: Verdana, Arial, Helvetica, sans-serif;
}
div#page_container {
width: calc(100% - 42px); /*100% - border - padding - vert. margin*/
max-width: 700px;
margin: 10px auto 10px auto;
border: 1px solid #646464;
border-radius: 0.1em;
padding: 10px;
background-color: #f7f7f7;
}
div#page_container > h1 {
text-align: center;
margin: 0.3em 0 0.3em 0;
}
select {
width: 100%;
}
input[type=text],
input[type=tel] {
width: calc(100% - 8px);
}
table {
width: 100%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
}
th, td {
padding: 0.2em 0.5em;
}
img {
max-width: 100%;
}
/*** Dark Mode (colors from Firefox's about:debugging) ***/
@media (prefers-color-scheme: dark) {
html, body {
background-color: #1c1b22;
color: #eeeeee;
}
div#page_container {
background-color: #23222b;
}
table, td, th {
border-color: #ffffff;
}
a {
color: #00ddff;
}
a:hover {
color: #80ebff;
}
a:active {
color: #aaf2ff;
}
/*button,
input[type=submit] {
background-color: #484854;
color: #ffffff;
}
button:hover,
input[type=submit]:hover {
background-color: #5c5c6a;
}*/
}