This repository was archived by the owner on Jul 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (86 loc) · 1.15 KB
/
styles.css
File metadata and controls
105 lines (86 loc) · 1.15 KB
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
* {
margin: 0;
padding: 0;
}
*, *:before, *:after {
box-sizing: inherit;
}
html {
box-sizing: border-box;
height: 100%;
width: 100%;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
min-height: 100%;
background-color: #f0f0f0;
width: 100%;
height: 100%;
color:#303030;
overflow: hidden;
}
div {
/*padding:0px;*/
}
button {
padding: 6px;
margin: 10px;
}
form>div{
margin: 10px 6px;
}
input {
padding: 6px;
font-size: 1.1em;
}
h1{
font-size: 2rem;
margin: 6px;
padding: 6px;
}
h2{
font-size: 1.6rem;
margin: 6px;
padding: 6px;
}
h3{
font-size: 1.3rem;
margin: 6px;
padding: 6px;
}
li{
list-style: none;
padding: 1rem;
}
.card{
background: #fff;
padding: 12px;
}
.row{
display: flex;
}
.fillr{
flex-grow:1;
}
.half{
width: 50%;
}
.column{
display: flex;
flex-direction: column;
}
.sparound {
justify-content: space-around;
}
label {
width: 100px;
}
.warning-label {
background: orange;
padding: 4px;
border-radius: 4px;
color: #fff;
}
.rAlign {
text-align: right;
}