-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.css
77 lines (74 loc) · 1.59 KB
/
layout.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
@import url("https://fonts.googleapis.com/css?family=Lato|Poppins");
:root {
--primaryColor: #3fd0d4;
--mainWhite: #fff;
--offWhite: #f7f7f7;
--mainBlack: #222;
--mainGrey: #ececec;
--darkGrey: #cfcfcf;
--mainTransition: all 0.3s linear;
--mainSpacing: 4px;
--lightShadow: 2px 5px 3px 0px rgba(0, 0, 0, 0.5);
--darkShadow: 4px 10px 5px 0px rgba(0, 0, 0, 0.5);
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Lato", sans-serif;
color: var(--mainBlack);
background: var(--mainWhite);
line-height: 1.4;
font-size: 1rem;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: "Poppins", sans-serif;
margin-bottom: 1.25rem;
letter-spacing: var(--mainSpacing);
}
p {
margin-bottom: 1.25rem;
}
.defaultHero {
min-height: calc(100vh - 62px);
background: linear-gradient(rgba(63, 208, 212, 0.7), rgba(0, 0, 0, 0.7)),
url("../images/defaultBcg.jpeg") center/cover no-repeat;
display: flex;
justify-content: center;
align-items: center;
}
.btn-white,
.btn-primary {
text-transform: uppercase;
text-decoration: none;
letter-spacing: var(--mainSpacing);
color: var(--mainWhite);
border: 2px solid var(--mainWhite);
padding: 0.9rem 1.6rem;
display: inline-block;
transition: var(--mainTransition);
cursor: pointer;
}
.btn-white:hover {
background: var(--mainWhite);
color: var(--primaryColor);
}
.btn-primary {
background: var(--primaryColor);
color: var(--mainWhite);
border: 2px solid var(--primaryColor);
}
.btn-primary:hover {
background: transparent;
color: var(--primaryColor);
}
/* .gatsby-image-wrapper {
max-height: 600px;
} */