-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (117 loc) · 2.6 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@300;400;600&family=Zilla+Slab:ital,wght@0,600;1,500;1,600&display=swap');
body {
font-family: 'Inter', sans-serif;
font-size: 1.5rem;
font-weight: 400;
color: black;
margin: 0px;
padding: 0px;
background-color:cornsilk
}
h1 {
font-family: 'DM Serif Display', serif;
font-weight: 600;
font-size: 4.5rem;
color: #467433;
margin: 0;
padding: 0;
}
h2 {
font-family: 'DM Serif Display', serif;
font-weight: 600;
font-size: 3.25rem;
color: black;
margin: 0;
padding: 0;
}
h3 {
font-family: 'DM Serif Display', serif;
font-weight: 500;
font-style: regular;
font-size: 2.5rem;
color: black;
margin: 0;
padding: 0;
}
a {
color: #467433;
}
a:link {
color: #467433;
}
strong {
font-family: 'Inter', sans-serif;
font-weight: 600;
}
button {
transition-duration: 0.4s;
background-color: #467433; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline;
font-size: 20px;
font-style: bold;
}
button:hover {
background-color: #568e3e;
color: white;
}
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 100px 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;
}