-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
88 lines (81 loc) · 1.44 KB
/
style.css
File metadata and controls
88 lines (81 loc) · 1.44 KB
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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');
body {
margin: 0;
padding: 0;
color: #444444;
}
.site-header {
display: flex;
min-width: 550px;
height: 49px;
color: #ffffff;
background-color: #000000;
}
h1 {
display: flex;
width: 300px;
margin: 0 auto 8px;
font-family: "Oswald", serif;
text-align: center;
font-weight: normal;
font-size: 46px;
line-height: 64px;
}
.content p {
height: 250px;
background-image: url(img/bricks.jpg);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
color: #ffffff;
font-family: "Oswald", serif;
font-size: 40px;
line-height: 1.5;
margin-top: 0px;
margin-bottom: 0px;
}
.site-footer {
min-width: 550px;
background-color: #000;
color: #ffffff;
}
.site-footer .container {
text-align: center;
font-size: 20px;
}
.site-footer p {
display: inline-block;
vertical-align: middle;
padding: 0 20px;
}
@media(max-width: 1920px) {
.title {
font-size: 30px !important;
}
}
@media(max-width: 1600px) {
.title {
font-size: 25px !important;
}
}
@media(max-width: 1280px) {
.title {
font-size: 20px !important;
}
}
@media(max-width: 1024px) {
.title {
font-size: 15px !important;
}
}
@media(max-width: 800px) {
.title {
font-size: 15px !important;
}
}
@media(max-width: 640px) {
.title {
font-size: 14px !important;
}
}