-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
118 lines (96 loc) · 1.38 KB
/
styles.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
112
113
114
115
116
117
118
/* Root global variables */
:root {
/* --chart-background-color: gray; */
--chart-background-color: transparent;
--empty-color: azure;
/* --empty-color: transparent; */
--wait-box: yellow;
--processing-box: #00ff00;
--switch-box: #ff0000;
}
/* Flex stuff */
.row {
display: flex;
flex-direction: row;
}
.column {
display: flex;
flex-direction: column;
}
.align-items-center {
align-items: center;
}
.align-items-start {
align-items: flex-start;
}
.center {
justify-content: center;
}
.evenly {
justify-content: space-evenly;
}
.between {
justify-content: space-between;
}
.wrap {
flex-wrap: wrap;
}
.flex-grow {
flex-grow: 1;
}
.stretch {
align-items: stretch;
}
/* Base CSS items */
.button {
width: 100px;
cursor: pointer;
}
.box {
color: white;
padding: 5px;
margin: 2px;
/* border: 1px solid #87cefa; */
border: none;
border-radius: 4px;
/* font-size: 16px; */
color: #333333;
min-width: 0px !important;
width: auto !important;
height: 100px;
}
/* CSS Colors */
.blue {
background: #87cefa;
}
.green {
background: #2e8b57;
color: #fff;
}
.red {
background: red;
}
.yellow {
background: yellow;
}
/* Etc */
.mw-200 {
max-width: 200px;
}
.mw-50 {
max-width: 50px;
}
.mh-100 {
max-height: 100px;
}
.p-5 {
padding: 2px;
margin: 2px;
}
.pm-0 {
padding: 0px;
margin: 0px;
}
.small-text {
font-size: 10px;
}