-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
86 lines (73 loc) · 1.29 KB
/
main.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
/*
elm-hot creates an additional div wrapper around the app to make HMR possible.
This could break styling in development mode if you are using Elm UI.
More context in the issue:
https://github.com/halfzebra/create-elm-app/issues/320
*/
[data-elm-hot="true"] {
height: inherit;
}
body {
font-family: 'Source Sans Pro', 'Trebuchet MS', 'Lucida Grande', 'Bitstream Vera Sans', 'Helvetica Neue', sans-serif;
margin: 0;
padding: 2em;
text-align: center;
color: #293c4b;
}
h1 {
font-size: 30px;
}
h2 {
flex-grow: .25;
}
img {
margin: 20px 0;
max-width: 200px;
}
div {
display: flex;
margin: 0;
}
table {
width: 100%;
}
table, th, td, tr, #filters {
border: 2px solid black;
border-collapse: collapse;
padding: 5px;
}
span {
user-select : none;
text-align: left;
}
.clickable {
cursor: pointer;
}
#bigContainer {
flex-direction: column;
justify-content: center;
position: absolute;
margin: 10px;
left: 0;
right: 0;
overflow-y: scroll;
}
#filters {
justify-self: flex-start;
flex-direction: row;
}
.filterDiv {
display: flex;
justify-content: flex-start;
flex-direction: column;
border: 2px solid black;
flex-grow: 1;
padding: 5px;
}
.toggleFiltersButton {
margin-top: auto;
margin-right: auto;
}
table {
margin-bottom: 10px;
}