Newer
Older
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
/* your custom css */
.homeContainer {
flex: 1 0 auto;
padding-bottom: 1em;
}
.docMainWrapper {
flex: 1 0 auto;
padding-bottom: 1em;
}
.homeContainer .homeWrapper .projectLogo {
justify-content: center;
position: relative;
padding: 2em;
}
.homeContainer .homeWrapper .projectLogo img {
max-height: 360px;
}
body {
display: flex;
flex-direction: column;
}
div.navPusher {
display: flex;
flex-direction: column;
}
.footer-logo {
padding-top: 1em;
display: flex;
justify-content: center;
}
@media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
}
@media only screen and (min-width: 1024px) {
}
@media only screen and (max-width: 1023px) {
}
@media only screen and (min-width: 1400px) {
}
@media only screen and (min-width: 1500px) {
}