-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
56 lines (46 loc) · 1016 Bytes
/
styles.css
File metadata and controls
56 lines (46 loc) · 1016 Bytes
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
@import 'fonts/font-familes.css';
@import 'css/header.css';
@import 'css/navbar.css';
@import 'css/banner.css';
@import 'css/banner-form.css';
@import 'css/content-area.css';
@import 'css/degrees.css';
@import 'css/tabs-content.css';
@import 'css/footer.css';
:root {
--blue: #012f6d;
--red: #c5103d;
--input-black: rgba(84, 82, 82, 1.0);
}
*,html {
transition: all 0.5s;
scroll-behavior: smooth;
}
body {
transition: 0.5s;
font-size: 21px;
scroll-behavior: smooth;
}
p {
color: rgba(84, 82, 82, 1.0);
font-family: 'Adobe Garamond Pro Regular';
line-height: 1.55;
letter-spacing: 0.020em;
padding-bottom: 15px;
font-size: 0.85em;
max-width: 62em;
}
.heading {
display: block;
font-family: 'Futura Std Bold';
color: var(--blue);
font-size: clamp(1em, 2.051vw, 1.142em);
line-height: 1.79;
letter-spacing: -0.020em;
padding-bottom: 10px;
}
@media (min-width: 1366px) {
.container {
max-width: 1200px;
}
}