main.css 2.08 KB
Newer Older
Cholgrrr's avatar
Cholgrrr committed
1
2
3
.footer,
.page-wrap:after {
    height: 90px;
Cholgrrr's avatar
Cholgrrr committed
4
5
6
}

.header {
Cholgrrr's avatar
Cholgrrr committed
7
    margin-bottom: 50px;
Cholgrrr's avatar
Cholgrrr committed
8
9
10
11
12
    margin-top: 0px;
    height: 10%;
    background-color: white;
}

Cholgrrr's avatar
Cholgrrr committed
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
.page-wrap {
    min-height: 100%;
    /* margin-bottom: -90px; */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* equal to footer height */

}

.page-wrap:after {
    content: "";
    display: block;
}

Cholgrrr's avatar
Cholgrrr committed
29
30
31
32
33
.main {
    margin-top: 60px;
    margin-bottom: 60px;
    overflow-x: auto;
    overflow-y: hidden;
Cholgrrr's avatar
Cholgrrr committed
34
    height: 100%;
Cholgrrr's avatar
Cholgrrr committed
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
}

.centered {
    left: 0;
    right: 0;
    height: 70%;

    margin: auto;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    width: 25%;
    padding: 0px;
    /* Should be removed. Only for demonstration */
}

a:link {
    color: black;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: black;
    background-color: transparent;
    text-decoration: none;
}

a:hover {
    color: black;
    background-color: transparent;
    text-decoration: underline;

}

a:active {
    color: grey;
    background-color: transparent;
    /* text-decoration: underline; */
}


/* @media Stuff */
@media only screen and (max-width: 740px) {
    h2 {
        font-family: 'ApfelGrotezk_regular';
        font-size: 20px;
        color: black;
        padding-left: 1em;
        padding-right: 1em;
    }

    h3 {
        font-family: 'ApfelGrotezk_regular';
Cholgrrr's avatar
Cholgrrr committed
96
        font-size: 40px;
Cholgrrr's avatar
Cholgrrr committed
97
98
99
100
101
102
        color: black;
        padding-left: 1em;
        padding-right: 1em;
    }

    h1 {
Cholgrrr's avatar
Cholgrrr committed
103
        font-family: 'ApfelGrotezk_regular';
Cholgrrr's avatar
Cholgrrr committed
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
        font-size: 40px;
        color: black;

    }
}

@media only screen and (max-width: 465px) {
    h2 {
        font-family: 'ApfelGrotezk_regular';
        font-size: 15px;
        color: black;
        padding-left: 1em;
        padding-right: 1em;
    }

    h3 {
        font-family: 'ApfelGrotezk_regular';
        font-size: 30px;
        color: black;
        padding-left: 1em;
        padding-right: 1em;
    }

    h1 {
Cholgrrr's avatar
Cholgrrr committed
128
        font-family: 'ApfelGrotezk_regular';
Cholgrrr's avatar
Cholgrrr committed
129
130
131
132
133
        font-size: 30px;
        color: black;

    }
}