-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathglobal_styles.css
More file actions
121 lines (102 loc) · 2.12 KB
/
Copy pathglobal_styles.css
File metadata and controls
121 lines (102 loc) · 2.12 KB
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
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@300;400;700&display=swap");
:root {
--primary-color: #265a5b;
--accent-color-1: #bb946e;
--accent-color-2: #2b3a41;
--accent-color-3: #1e292e;
--accent-color-4: #1b3f40;
--neutral-color: #ffffff;
--hero-font: 52px;
--heading-font-1: 30px;
--heading-font-2: 24px;
--heading-font-3: 22px;
--heading-font-4: 18px;
--body-font: 16px;
--title-font-family: "Inria Serif", serif;
--body-font-family: "Roboto", sans-serif;
--font-letter-spacing: 1px;
}
h1 {
font-family: var(--title-font-family);
font-size: var(--heading-font-1);
}
h2 {
font-size: var(--heading-font-2);
}
h3 {
font-size: var(--heading-font-3);
}
h4 {
font-size: var(--heading-font-4);
}
div,
p {
font-size: var(--body-font);
color: white;
font-family: var(--body-font-family);
letter-spacing: var(--font-letter-spacing);
font-weight: 300;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
li {
list-style-type: none;
}
a {
color: white;
text-decoration: none;
font-weight: 500;
}
section {
margin-bottom : 120px;
}
.container {
max-width: 1130px;
min-height: inherit;
margin: 0 auto;
}
.btn {
background-color: var(--accent-color-1);
border: none;
color: var(--neutral-color);
width: 130px;
height: 40px;
cursor: pointer;
}
.btn:hover {
background-color: #000046;
}
.link {
color: #abc5ff;
}
.title {
font-family: var(--title-font-family);
color: var(--neutral-color);
font-size: var(--heading-font-1);
text-align: center;
}
.desc {
font-family: var(--body-font-family);
color: var(--neutral-color);
font-weight: 300;
letter-spacing: var(--font-letter-spacing);
}
.back {
fill: rgba(255, 255, 255, 0.5);
cursor: pointer;
margin-left: 20px;
}
.back:hover {
fill: #ffffff;
}
.error {
background-color: #a94442;
color: white;
padding: 10px;
border-radius: 5px;
font-weight: 700;
}