-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
62 lines (52 loc) · 949 Bytes
/
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
@import url('https://fonts.googleapis.com/css2?family=Cabin&display=swap');
body {
font-family: 'Cabin', sans-serif;
background: rgb(138, 132, 132);
}
html, body {
margin: 0;
padding:0;
height: 100%;
overflow-x: hidden;
}
#container {
position: relative;
min-height: 100%;
margin: 0;
padding:0;
}
h1 {
display: inline-block;
font-size: 45px;
border: 5px solid black;
padding: 5px;
background: #ffffff;
}
#body {
padding-left: 10%;
padding-right: 10%;
}
#body {
padding-bottom:40px;
}
footer {
position: absolute;
bottom:0;
width: 100%;
height: 40px;
background: #ffffff;
text-align: center;
line-height: 40px;
font-size: small;
}
@media (max-width: 800px) {
body {font-size: 25px; }
h1 {scale: 120%; margin-top: 10%}
footer {display: none}
}
a {
color: blue;
}
a:visited {
color: blue;
}