-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (49 loc) · 793 Bytes
/
style.css
File metadata and controls
58 lines (49 loc) · 793 Bytes
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
/* style.css */
body {
font-family: Arial, sans-serif;
}
.container-fluid {
margin-top: 20px;
}
h1, h2, h3, h4, h5, h6 {
font-weight: bold;
}
footer {
margin-top: 20px;
text-align: center;
}
ul {
list-style: none;
padding-left: 0;
}
.navbar-nav li {
margin-right: 10px;
}
@media (max-width: 767px) {
.navbar-nav li {
margin-right: 0;
margin-bottom: 10px;
}
}
.modal-dialog {
display: flex;
justify-content: center;
align-items: center;
}
.modal-content {
width: 90%;
max-width: 800px;
}
.modal-body {
padding: 0;
}
.modal-body iframe {
width: 100%;
height: calc(100vh - 150px);
border: none;
}
@media (max-width: 767px) {
.modal-body iframe {
height: calc(100vh - 200px);
}
}