-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
120 lines (105 loc) · 1.87 KB
/
style.css
File metadata and controls
120 lines (105 loc) · 1.87 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
* {
padding: 0px;
margin: 0px;
border-box: box---;
}
#body {
display: flex;
flex-direction: row;
justify-items: center;
}
#left {
inset: 0px;
height: 100%;
width: 18%;
background-color: rgb(5, 74, 125);
}
#left-lists {
list-style-type: none;
padding-left: 40px;
text-align: start;
color: white;
}
.list {
display: flex;
justify-items: center;
margin-bottom: 18px;
}
.material-symbols-outlined {
margin-right: 20px;
}
#header {
width: 100vh;
height: 10%;
margin-top: 20px;
display: flex;
justify-content: space-between;
justify-items: center;
}
#header-content {
display: flex;
flex-direction: row;
justify-items: center;
justify-content: space-between;
}
#search-bar {
display: flex;
justify-items: center;
margin-left: 20px;
margin-top: 24px;
outline: 2px solid transparent;
outline-offset: 2px;
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
#text-button {
padding-left: 100px;
padding-right: 100px;
border-radius: 8px;
border: 4px;
padding-top: 2px;
padding-bottom: 2px;
}
#search-button {
border-radius: 8px;
border: none;
}
.button {
background-color: rgb(2, 167, 137);
color: white;
padding-left: 30px;
padding-right: 30px;
padding-top: 12px;
padding-bottom: 12px;
border-style: none;
border-radius: 8px;
margin-left: 8px;
margin-right: 8px;
}
.t-heading {
background-color: rgb(5, 74, 125);
color: white;
padding-right: 5px;
padding-left: 12px;
padding-top: 12px;
padding-bottom: 8px;
}
.t-data {
padding-left: 8px;
padding-top: 8px;
padding-bottom: 8px;
}
.t-data-button {
display: flex;
flex-direction: row;
width: 8px;
}
.table-button {
width: 24px;
height: 24px;
margin-left: 4px;
margin-right: 4px;
background-color: white;
border-style: solid;
border: 2px solid rgb(208, 214, 222);
margin-bottom: 6px;
}