-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
108 lines (85 loc) · 1.49 KB
/
styles.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
html {
font-size: 62.5%;
}
body {
margin: 0;
background-color: #CC7722;
min-height: 100vh;
display: flex;
flex-direction: column;
}
#top-design {
height: 5rem;
background-image: url("site_images/title_border.svg");
background-repeat: repeat-x;
}
.fancy-border {
height: 5rem;
background-image: url("site_images/section_border.svg");
background-repeat: repeat-x;
}
header {
background-color: #2D2615;
color: white;
display: flex;
flex-direction: column;
padding: 5rem;
align-items: center;
}
h1 {
margin: 0;
font-size: 4rem;
text-align: center;
overflow-wrap: anywhere;
}
main {
display: flex;
flex-direction: column;
}
footer {
background-color: #2D2615;
color: white;
padding: 5rem;
margin-top: auto;
display: flex;
flex-direction: row;
font-size: 2rem;
justify-content: space-evenly;
}
footer a {
text-decoration: none;
color: white;
}
footer a:visited {
color: white;
}
footer a:hover {
color: goldenrod;
}
footer a:active {
color: rgb(137, 100, 6);
}
section {
padding: 3rem 40rem 5rem 40rem;
}
p {
font-size: 3rem;
color: #2D2615;
font-weight: bold;
margin: 0;
}
@media (max-width: 1218px) {
section {
padding: 3rem 20rem 5rem 20rem;
}
}
@media (max-width: 750px) {
section {
padding: 3rem 11rem 5rem 11rem;
}
}
@media (max-width: 550px) {
section {
padding: 3rem 3rem 5rem 3rem;
}
}