-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
97 lines (77 loc) · 1.27 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
@font-face {
font-family: "roboto";
src: url(./font/roboto/Roboto-Black.ttf);
}
body {
margin: 0;
font-family: "roboto";
}
.heading, .content, .quote, .action, .footer {
padding: 0 15% 0 15%;
}
/* Colors and font */
.heading, .footer {
background-color: #1F2937;
}
.content.header, .quote .text {
color: #1F2937;
}
.quote {
background-color: #E5E7EB;
}
.hero.secondary, .header.links {
color: #c9ced3;
font-size: 18px;
}
.hero.main, .logo {
color: #F9FAF8;
}
.hero.button, .action {
background-color: #3882F6;
}
.hero.main {
font-size: 48px;
font-weight: 900;
}
.logo {
font-size: 24px;
}
.content.header {
font-size: 36px;
font-weight: 900;
}
.quote .text {
font-size: 36px;
font-weight: 300;
font-style: italic;
}
/* Placement */
.banner {
display: flex;
justify-content: space-between;
padding-top: 20px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
display: flex;
}
.heading {
display: flex;
flex-direction: column;
justify-content: flex-start;
width: auto;
height: 500px;
}
.hero {
margin-top: auto;
margin-bottom: auto;
display: flex;
flex: 1;
gap: 50px;
}
.hero.text {
display: flex;
flex-direction: column;
}