-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
111 lines (103 loc) · 1.69 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
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
@import url("fonts/fonts.css");
:root {
color-scheme: light dark;
--color-main: #000;
--color-background: #fff;
--canvas-minwidth: 2700px;
}
@media (prefers-color-scheme: dark) {
:root {
--color-main: #ccc;
--color-background: #0F0F0F;
}
}
* {
margin: 0;
padding: 0;
}
html {
font-family: "IBM Plex Sans", sans-serif;
line-height: 1.3;
text-align: center;
}
ul {
list-style: none;
}
li {
padding: 3px;
}
body {
color: var(--color-main);
background-color: var(--color-background);
}
input {
margin-left: 5px;
margin-right: 3px;
font-family: "IBM Plex Sans", sans-serif;
font-size: 14px;
}
#amount {
width: 50px;
text-align: right;
}
#accountdetails {
display: none;
}
img {
width: 90%;
max-width: 300px;
}
.small {
font-size: 13px;
}
/* !page-navigation */
/* !main */
main {
padding: 2vw;
}
main a {
color: inherit;
}
main p {
margin: 1em 0;
}
main h1 {
font-size: 2rem;
}
section header {
background-image: linear-gradient(#000, #000);
background-image: linear-gradient(var(--color-main), var(--color-main));
background-size: 64px 2px;
background-repeat: repeat-x;
background-position: center center;
}
section header h2 {
display: inline-block;
padding-right: 1em;
font-size: 0.8em;
text-transform: uppercase;
max-width: none;
margin: 2rem 0;
color: #000;
color: var(--color-main);
background-color: #fff;
background-color: var(--color-background);
}
section article {
margin-bottom: 2rem;
}
section > article:last-child {
margin-bottom: 0;
}
section > * > article:last-child {
margin-bottom: 0;
}
.table-group table {
display: inline-table;
margin-right: 2em;
}
@media (max-width: 660px) {
.state-indicator {
z-index: 2;
}
}