-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpermission-denied.css
271 lines (223 loc) · 5.53 KB
/
permission-denied.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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
* {
font-family: 'Quicksand', sans-serif;
}
body {
background-color: #f6f6f6;
font-family: Arial, Helvetica, sans-serif;
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
margin: 0;
}
#main {
background-color: white;
max-width: 90%;
margin: auto;
overflow: hidden;
border: 1px solid #777;
min-height: 100%;
}
#content {
flex-grow: 1;
width: 100%;
}
/*Beginning of css for navbar*/
.myNav {
grid-area: myNav;
background-color: #faf9f9;
width: 100%;
background-color: #efbf1a;
overflow: visible
}
/* The popup form - hidden by default */
.popup-background {
display: none;
position: fixed;
z-index: 1;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0,0,0,0.4);
}
.inviteuser-form {
width: 25%;
padding: 10px;
background-color: white;
margin: auto;
margin-top: 90px;
}
.inviteuser-form input[type=text], .form-container input[type=password] {
width: 100%;
padding: 15px;
margin: 5px 0 22px 0;
border: none;
background: #f1f1f1;
}
.inviteuser-form input[type=text]:focus, .form-container input[type=password]:focus {
background-color: #ddd;
outline: none;
}
.inviteuser-form .btn {
background-color: #efbf1a;
color: white;
padding: 16px 20px;
border: none;
cursor: pointer;
width: 100%;
margin-bottom: 10px;
opacity: 0.8;
}
.inviteuser-form .cancel {
background-color: #bbb;
transition: 0.4s;
}
.inviteuser-form .cancel:hover {
background-color: red;
opacity: 1;
}
.nav {
max-width: fit-content;
max-height: 90px;
}
.navbar {
height: 90px;
border: none;
}
.navbar-brand {
margin-left: 1px; /* or whatever size you want */
padding-top: 7px; /* this will push it down */
padding-bottom: 7px; /* this can give more space at the bottom */
}
#logo {
max-width: 1000px; /* Set a maximum width for the logo */
height: auto; /* Maintain the aspect ratio */
margin-right: -1000px; /* Add some margin to separate the logo from text */
}
.navbar-collapse {
position: relative; /* Ensure it's positioned */
z-index: 1000; /* Any high number to ensure it's on top of other page elements */
}
.navbar.navbar-expand-lg.navbar-dark.bg-dark {
background-color: #efbf1a !important;
}
.navbar-dark .navbar-nav .nav-link {
color: white;
font-size: 1.2em;
text-decoration: none;
padding: 23px 30px; /* Keep padding between elements on the nav bar horizontally and vertically*/
height: 90px;
padding-top: 30px;
background-color: #efbf1a;
}
.navbar-dark .navbar-nav .nav-link:hover {
background-color: #f6dc80; /* Background color on hover */
color: black; /* Text color on hover */
}
/* Style the dropdown menu */
.navbar-dark .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
display: block;
position: absolute;
top: 90px;
width: 170px;
background: white;
box-shadow: none;
border: 0; /* Remove any border that might create a gap */
padding: 0; /* Remove any padding to ensure full highlighting */
margin: 0; /* Remove any margin that might create a gap */
}
/* Style the dropdown menu links */
.navbar-dark .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item {
padding: 10px;
color: black;
font-size: 1.2em;
text-decoration: none;
border: 0; /* Remove any border on the dropdown items */
margin: 0; /* Remove any margin on the dropdown items */
}
/* Style the dropdown menu links on hover */
.navbar-dark .navbar-nav .nav-item.dropdown:hover .dropdown-menu .dropdown-item:hover {
background-color: #f6dc80;
; /* Background color on hover */
color: black; /* Text color on hover */
}
/* Style the logo */
.navbar .navbar-brand {
float: left;
height: inherit;
margin-left: 1em;
color: white;
display: flex;
}
.material-symbols-outlined {
font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
#profileIcon {
font-size: 38px;
vertical-align: middle;
}
.logo {
/* want the image to stretch to larger than original size */
max-width: 100%;
height: auto;
max-height: fit-content;
background-size: cover;
text-align: center;
display: block;
margin-left: auto;
margin-right: auto;
}
/*End of css for navbar*/
/*Footer Content*/
.myFooter {
grid-area: myFooter;
text-align: left;
height: 13.5vh;
}
.footer {
background: #303036;
color: #d3d3d3;
height: 140px;
position: relative;
}
.footer .footer-content {
display: flex;
justify-content: space-between;
align-items: center;
float: left;
height: 100%;
margin-left: 2vw;
}
.footer-title {
font-family: 'Churchward Design Bold';
font-size: 3vh;
margin-bottom: 0.5vh;
}
.footer .footer-content .footer-section {
flex: 1;
padding: 2px;
}
.footer .footer-content .about .contact-details span {
display: block;
font-size: 1.1em;
}
.preview-text {
white-space: pre-line;
}
@media (max-width: 1300px) {
.inviteuser-form {
width: 40%
}
}
@media (max-width: 830px) {
.inviteuser-form {
width: 60%
}
}
@media (min-width: 768px) {
#content {
width: 50%;
}
}