-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
120 lines (102 loc) · 2.02 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
font-family: 'Open Sans', sans-serif;
background-color: #f3f3f3;
opacity: 1;
background-image: radial-gradient(#F1AA3F 2px, transparent 2px), radial-gradient(#F1AA3F 2px, #f3f3f3 2px);
background-size: 80px 80px;
background-position: 0 0, 40px 40px;
color: #333;
}
h1, h2, h3, h4, h5, h6 {
font-family: 'Montserrat', sans-serif;
color: #555;
}
.container {
max-width: 1200px;
}
.hero {
position: relative;
background: url('maker-exchange.png') repeat center center/cover;
height: 60vh;
color: white;
}
.hero::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.2);
}
.hero h1 {
font-family: 'Montserrat', sans-serif;
font-size: 5em;
position: relative;
}
.hero p {
font-size: 2em;
position: relative;
}
.hero h1, .hero p {
color: white;
text-shadow: 3px 3px 0 #000,
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
position: relative;
}
.main-container {
border-radius: 8px 8px 0 0;
margin-top: -10%;
position: relative;
z-index: 10;
}
.card {
border-radius: 8px;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}
.card-title {
text-align: center;
margin-top: 1rem;
}
.icon {
width: 120px;
height: 120px;
display: block;
margin: 0 auto;
}
.address {
margin-bottom: 1.5rem;
line-height: 1.6;
}
.location-card {
min-height: 400px;
}
.text-body-secondary {
font-family: 'Montserrat', sans-serif;
position: relative;
}
.map-container {
height: 400px;
border: none;
border-radius: 8px 0 0 8px;
padding: 15px;
width: 100%;
}
@media (min-width: 768px) {
.main-container {
margin-top: -14%; /* Medium screens and up */
}
}
@media (min-width: 1200px) {
.main-container {
margin-top: -9%; /* Extra large screens */
}
}
@media (min-width: 1400px) {
.main-container {
margin-top: -7%; /* Very large screens */
}
}