blob: 521a7d836a62a77e7211297adf3c5c440f1cc587 (
plain)
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
122
123
|
* {
font-family: "Roboto", serif;
font-weight: 300;
margin: 0px;
}
/* Arrangement of items */
.section {
display: flex;
justify-content: center;
}
#top { /* Container for Top section */
flex-direction: column;
align-items: center;
}
#header { /* Container for Logo and Links */
width: 75%;
margin-top: 2%;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#logo {
flex: auto;
min-width: 60px;
min-height: 60px;
}
#links { /* Container for the header links */
display: flex;
justify-content: space-between;
flex-wrap: nowrap;
}
#links a {
padding: 4px 10px;
flex: auto;
min-width: 60px;
min-height: 60px;
}
/* Style of items */
#top {
background-color: #1F2937;
color: #F9FAF8;
}
#top h1 {
font-size: 48px;
font-weight: 900;
}
/* Secondary text */
#top a,
#top h6 {
font-size: 18px;
color: #E5E7EB;
}
#logo {
font-size: 24px;
}
#hero img {
width: 400px;
height: 200px;
}
button {
background-color: #3882F6;
color: #F9FAF8;
}
#info {
background-color: #FFFFFF;
}
#info h2 {
font-size: 36px;
color: #1F2937;
font-weight: 900;
}
#info h6 {
font-size: 18px;
color: #8f9093;
}
#info img {
border: 4px solid #3882F6;
width: 100px;
height: 100px;
}
#quote {
background-color: #E5E7EB;
}
#quote p {
font-size: 36px;
font-style: italic;
color: #1F2937;
}
#quote h3 {
font-size: 24px;
color: #1F2937;
font-weight: 900;
}
#bottom {
background-color: #FFFFFF;
}
#call-to-action {
background-color: #3882F6;
}
#call-to-action h3 {
font-size: 24px;
color: #F9FAF8;
}
#call-to-action h6 {
font-size: 18px;
color: #E5E7EB;
}
#call-to-action button {
border: 2px solid white;
}
footer {
background-color: #1F2937;
font-size: 18px;
color: #E5E7EB;
}
|