-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (58 loc) · 1.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
:root {
--very-dark-blue: hsl(243, 87%, 12%);
--desaturated-blue: hsl(238, 22%, 44%);
--bright-blue: hsl(224, 93%, 58%);
--moderate-cyan: hsl(224, 93%, 58%);
--light-grayish-blue: hsl(240, 75%, 98%);
--light-gray: hsl(0, 0%, 75%);
--emerald-dark: hsl(170, 55%, 29%);
--emerald-light: hsl(171, 48%, 83%);
}
@font-face {
font-family: "Raleway";
src: url(./assets/fonts/Raleway/Raleway-VariableFont_wght.ttf);
}
@font-face {
font-family: "Open Sans";
src: url(./assets/fonts/Open_Sans/OpenSans-VariableFont_wdth\wght.ttf);
}
h1,
h2 {
font-family: "Raleway";
font-weight: 700;
}
body {
font-family: "Open Sans";
font-weight: 400;
}
.productive {
background-color: #f8f8fe;
}
.testimony-name {
font-size: small;
padding: 0;
margin: 0;
}
.testimony-p {
color: gray;
font-size: small;
padding: 0;
margin: 0;
}
.cta {
background-color: var(--desaturated-blue);
}
footer {
background-color: var(--very-dark-blue);
color: var(--light-gray);
}
input {
border-radius: 0.3rem;
border: 0.1rem solid var(--light-gray);
}
.facebook,
.twitter,
.instagram {
border: 0.1rem solid var(--light-gray);
color: white;
}