-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathshared.css
93 lines (79 loc) · 1.44 KB
/
shared.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
:root {
--fmt-border-radius: 3px;
--fmt-color-1: #2C434A;
--fmt-color-2: #FFFFFF;
--fmt-color-2_15: #f0f0f0;
--fmt-color-2_40: #d7d7d7;
--fmt-color-2_50: #888888;
--fmt-color-3: #6ECDC4;
--fmt-color-4: #16779C;
--fmt-color-5: #76AFD4;
--fmt-color-danger: #E65026;
}
html,
body {
margin: 0;
height: 100%;
}
body {
display: flex;
flex-direction: column;
font-family: Calibri, Arial, sans-serif;
color: var(--fmt-color-1);
background-color: var(--fmt-color-2_15);
}
h1 {
margin: 0;
font-weight: 300;
}
ul {
margin: 0;
padding: 0;
list-style: none;
}
input,
textarea {
box-sizing: border-box;
padding: 0.5rem;
border: 1px solid var(--fmt-color-5);
border-radius: var(--fmt-border-radius);
}
button {
cursor: pointer;
border-radius: 2px;
font-family: Calibri, Arial, sans-serif;
background-color: var(--fmt-color-4);
color: var(--fmt-color-2);
}
button:disabled {
background-color: #aaa !important;
border: 1px solid #aaa !important;
}
button.danger {
background-color: var(--fmt-color-danger) !important;
border: 1px solid var(--fmt-color-danger) !important;
}
p {
margin: 0;
}
.page-header {
background-color: var(--fmt-color-4);
color: var(--fmt-color-2)
}
.page-header,
.main,
.page-footer {
padding: 1rem;
}
.main {
flex: 1;
}
.secondary {
color: var(--fmt-color-2_50);
}
@media screen and (min-width: 1200px) {
.container {
max-width: 1140px;
margin: 0 auto;
}
}