-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.css
98 lines (84 loc) · 1.4 KB
/
library.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
body {
font-family: Courier;
padding: 4% 8% 4% 8%;
}
.title__primary {
margin: 8px;
}
.toolbar {
color: #757575;
padding: 8px;
}
.btn__submit {
font-family: inherit;
width: 160px;
padding: 8px;
margin: 4px;
cursor: pointer;
}
.btn__icon {
font-family: inherit;
padding: 4px 16px 4px 16px;
margin: 0px 16px 0px 16px;
cursor: pointer;
}
.btn__iconLabel {
font-family: inherit;
width: 120px;
padding: 4px 16px 4px 16px;
margin: 0px 16px 0px 16px;
cursor: pointer;
}
.form__container {
border: 1px solid #bdbdbd;
border-radius: 4px;
padding: 32px;
margin: 8px;
}
.form__input {
font-family: inherit;
max-width: 160px;
border: 1px solid #212121;
border-radius: 4px;
padding: 8px;
margin: 4px;
}
.form__dropdown {
font-family: inherit;
width: 88px;
border: 1px solid #212121;
border-radius: 4px;
padding: 8px;
margin: 4px;
cursor: pointer;
}
.table__container {
width: 100%;
vertical-align: center;
text-align: left;
border-collapse: collapse;
}
.table__header {
font-weight: 900;
text-align: left;
}
.table__row {
font-size: 16px;
border-bottom: 1px solid #e0e0e0;
}
.table__row-item {
max-width: 160px;
overflow: auto;
padding: 16px;
}
.table__cell--empty {
font-size: 14px;
text-align: center;
color: #757575;
background-color: #f5f5f5;
border-radius: 4px;
padding: 16px;
}
.table__cell--hidden {
display: none;
}