-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
111 lines (93 loc) · 1.48 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
:root {
--table-cell-padding: 1rem;
--table-border: 1px solid rgba(224, 224, 224, 1);
--app-width: 700px
}
html{
min-width: var(--app-width);
}
body {
width: 100%;
min-width: var(--app-width);
}
nav {
display: flex;
flex-direction: column;
}
.logo-search-wrapper {
display: flex;
margin: 0 1rem;
align-items: center;
}
.app-title {
text-align: center;
}
.wrapper {
width: 100%;
display: flex;
flex-direction: column;
}
#search {
margin-left: auto;
padding: 0.5rem;
width: 150px;
align-self: center;
}
.breadcrum-wrapper {
display: flex;
margin: 1rem 1rem;
}
.breadcrum > a {
color: gray;
text-decoration: none;
}
.breadcrum > a:hover {
color: black;
cursor: pointer;
}
.breadcrum:before {
content: '/';
margin-right: 8px;
color: lightgray;
}
.logo {
height: 24px;
width: 24px;
margin-right: 9px;
}
.breadcrum:not(:first-of-type) {
margin-left: 8px;
color: lightgray;
content: ' ';
}
#breadcrum-user-saved-list {
font-weight: bold;
color: black;
}
.table-wrapper{
padding: 32px;
background-color: #f5f5f5;
align-self: center;
}
table {
border-spacing: 0;
border: 0.5px solid gray;
background-color: white;
}
thead > tr {
border-top: var(--table-border);
font-size: 1rem;
font-weight: bold;
}
th {
padding: var(--table-cell-padding);
text-align: left;
border-bottom: var(--table-border);
}
td {
padding: var(--table-cell-padding);
border-bottom: var(--table-border);
}
#users-table {
display: none;
}