This repository has been archived by the owner on Dec 8, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
111 lines (87 loc) · 1.37 KB
/
style.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
html, body {
max-width: 100%;
overflow-x: hidden;
}
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 20px;
background-color: #123;
color: snow;
}
img {
max-width: 100%;
}
a {
color: SteelBlue;
}
.btn-primary {
background-color: royalblue;
border-color: royalblue;
}
.btn-success {
background-color: forestgreen;
}
.card {
border: 1px solid dimgrey;
}
.card-header {
background-color: slateblue;
}
.card-body {
background-color: darkslateblue;
}
.modal-header {
background-color: forestgreen;
border-bottom: none;
}
.modal-body {
background-color: darkslategrey;
}
.modal-body a {
color: snow;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
background-color: royalblue;
}
.hide-if-noscript {
display: none;
}
#navigation {
margin-top: 20px;
}
#logo {
margin-top: 1em;
margin-bottom: 1em;
}
#mirror {
display: none;
background-color: indianred;
text-align: center;
padding: 2px;
}
#mirror p {
vertical-align: middle;
}
#content {
margin: auto auto;
max-width: 800px;
}
section {
margin-top: 20px;
margin-bottom: 20px;
}
.module p {
height: 60px;
}
.nav-pills > li {
float: none;
}
.nav > li {
display: inline-block;
}
.carousel-inner > .item > a > img, .carousel-inner > .item > img {
margin: auto;
}