-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (100 loc) · 2.14 KB
/
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
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
109
110
111
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;600&family=Zilla+Slab:ital,wght@0,600;1,500&display=swap');
body {
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
font-weight: 300;
color: #3A3B3C;
margin: 0px;
padding: 0px;
}
h1 {
font-family: 'Zilla Slab', serif;
font-weight: 600;
font-size: 4.5rem;
color: black;
margin: 0;
padding: 0;
}
h2 {
font-family: 'Zilla Slab', serif;
font-weight: 600;
font-size: 3.25rem;
color: black;
margin: 0;
padding: 0;
}
h3 {
font-family: 'Zilla Slab', serif;
font-weight: 500;
font-style: regular;
font-size: 2.5rem;
color: black;
margin: 0;
padding: 0;
}
a {
color: blue;
}
a:link {
color: blue;
}
strong {
font-family: 'Inter', sans-serif;
font-weight: 600;
}
main {
min-height: calc(100vh - 300px);
margin: 0 auto;
padding: 0 auto;
}
.hero {
display: grid;
grid-template-columns: 2fr 8fr 2fr;
grid-column-gap: 2vw;
grid-template-rows: 1fr;
/*grid-template-areas: "blank content blank"*/
text-align: center;
padding: 50px 40px 0px 40px;
margin: 0;
}
.hero p {
font-size: 2rem;
padding: 0px 0px 0px 0px;
margin: 0;
}
.grid-layout_page {
display: grid;
grid-template-columns: 3fr 6fr 3fr;
grid-column-gap: 2vw;
grid-template-rows: 1fr;
/*grid-template-areas: "blank content blank"*/
padding: 50px 0px 0px 0px;
margin: 0;
}
@media only screen and (max-width: 768px) {
.grid-layout_page {
display: grid;
grid-template-columns: 1fr 10fr 1fr;
grid-column-gap: 2vw;
grid-template-rows: 1fr;
/*grid-template-areas: "content blank blank"*/
}
}
.contact-footer {
display: grid;
grid-template-columns: 3fr 6fr 3fr;
grid-column-gap: 2vw;
grid-template-rows: 1fr;
/*grid-template-areas: "blank content blank"*/
padding: 0px 0px 0px 0px;
margin: 0;
}
.site-footer {
display: grid;
grid-template-columns: 12fr;
grid-column-gap: 1vw;
grid-template-rows: 1fr;
text-align: center;
font-size: 1rem;
padding: 0px 0px 0px 0px;
}