-
Notifications
You must be signed in to change notification settings - Fork 7
/
styles.css
147 lines (139 loc) · 2.24 KB
/
styles.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
* {
font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI",
"Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans",
sans-serif;
box-sizing: border-box;
}
html {
font-size: 62.5%;
}
body {
font-size: 1rem;
}
/* Utility classes */
.bg-primary {
background-color: #000 !important;
}
.blue-bg {
background-color: #c6f9ec;
}
.main-heading {
font-size: 5rem;
line-height: 6rem;
margin: 3.5rem auto 1.5rem;
font-weight: 900;
width: 80%;
}
.width-regular {
width: 80%;
margin: 0 auto;
}
.contentWrapper {
margin: 0 auto;
}
.map-container {
background-color: #c6f9ec;
padding: 1rem 0;
}
.map-frame-container {
width: 30rem;
margin: 0 auto;
}
/* Layout Styling */
nav .container-fluid {
width: 80%;
}
p {
font-size: 1.9rem;
line-height: 2.5rem;
width: 80%;
margin: 2rem auto;
}
.messages {
display: flex;
align-items: center;
background-color: #ffd699;
}
.messages-container {
display: flex;
margin: 0 auto;
}
.navbar-brand {
font-size: 2.5rem;
}
footer {
padding: 2rem;
color: #fff;
text-align: center;
background-color: #000;
display: flex;
flex-direction: column;
}
footer h4 {
font-size: 1.9rem;
margin-bottom: 0;
}
footer h4:first-child {
margin-bottom: 1rem;
}
footer p {
margin: 0.5rem auto;
}
.contact-us {
color: #fff;
}
.contact-us:hover {
color: #fff;
opacity: 75%;
}
/* Responsive styling */
@media only screen and (max-width: 650px) {
.main-heading {
font-size: 4.5rem;
line-height: 5rem;
width: 95%;
}
p {
font-size: 2rem;
line-height: 2.3rem;
width: 95%;
}
.messages-icon {
display: none;
}
}
@media only screen and (min-width: 650px) {
.map-frame-container {
width: 50rem;
}
}
@media only screen and (min-width: 1200px) {
.messages-container,
.main-heading,
.container-fluid,
p {
width: 65%;
}
.map-frame-container {
width: 65rem;
}
}
@media only screen and (min-width: 1600px) {
.messages-container,
.main-heading,
.container-fluid,
p {
width: 55%;
}
.map-frame-container {
width: 80rem;
}
}
@media only screen and (min-width: 2000px) {
.messages-icon {
width: 10%;
}
.contentWrapper > p:last-of-type {
text-align: center !important;
}
}