-
Notifications
You must be signed in to change notification settings - Fork 3
/
styles.css
203 lines (185 loc) · 3.12 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
.main-container {
min-height: 100vh;
background: #2e3749;
}
/* Nav Bar Styles */
.navbar {
padding: 20px !important;
display: flex;
align-items: center;
}
.navbar-heading {
margin-left: 10px;
text-transform: uppercase;
color: white;
letter-spacing: 2px;
font-size: 1.25rem;
}
.fa-plus-circle {
margin-right: 08px;
}
#tables-container {
/* display: grid;
grid-row-gap: 100px;
width: 100%; */
box-sizing: border-box;
padding: 40px;
margin: 0 auto;
/* border-radius: 10px; */
}
/* Table Card Styles */
.table-container {
border-radius: 10px;
background-color: #495467;
height: fit-content;
font-size: 0.9rem;
max-width: 300px;
}
.table-header {
height: 10px;
border-radius: 10px 10px 0px 0px;
background-color: #38b2ac;
}
.white-text {
color: #ffffff;
}
.table-heading {
text-transform: capitalize;
font-size: 1.0625rem;
}
.table-subheading {
font-size: 14px;
font-weight: 500;
}
.table-body {
padding: 12px 10px;
/* min height because react connect element library arrows issue */
min-height: 350px;
}
.field-container {
display: flex;
justify-content: space-between;
margin-bottom: 2px;
}
.field-option {
margin-right: 14px;
color: #7b7b7b;
}
.active-color {
color: #38b2ac;
}
.overlay {
background: #9d9d9d55;
width: 100%;
height: 100vh;
position: fixed;
display: none;
}
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
right: 0;
background-color: #1a202d;
overflow-x: hidden;
padding-top: 60px;
transition: 0.5s;
max-width: 490px;
}
#gear-button {
margin-left: 20px;
font-size: 20px;
color: #38b2ac;
}
/* The navigation menu links */
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
.sidenav a:hover {
color: #f1f1f1;
}
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
#main {
transition: margin-left 0.5s;
padding: 20px;
}
.sidebarHeader {
color: white;
margin-left: 20px;
}
.sidebarText {
color: white;
margin-left: 20px;
}
.sidebarFormText {
color: white;
margin-left: 20px;
margin-top: 40px;
}
.sidebarInput {
margin-left: 20px;
margin-top: 10px;
border-radius: 10px;
width: 90%;
padding: 10px;
}
.checkbox1 {
margin-left: 25px;
margin-top: 20px;
}
.checkboxText {
margin-left: 10px;
color: white;
margin-top: 20px;
}
.sidebarHeaderFields {
color: white;
margin-left: 20px;
margin-top: 20px;
}
.sidebarFieldInput {
margin-left: 20px;
margin-top: 10px;
border-radius: 10px;
width: 160px;
padding: 10px;
}
.letterN {
color: #7b7b7b;
margin-left: 20px;
}
.save-btn {
margin: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {
padding-top: 15px;
}
.sidenav a {
font-size: 18px;
}
}
.add-field-btn {
margin-left: 20px;
padding: 20px 16px 0;
color: #38b2ac;
font-size: 20px;
display: inline-block;
}
.field-form-container {
flex-direction: column;
}