-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsub.css
70 lines (57 loc) · 967 Bytes
/
sub.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
body{
background: white;
}
.sub-hero {
background: url(images/forest-bg-2.jpg);
background-size: cover;
height: 70vh;
}
.bread-wrapper {
display: grid;
justify-content: center;
margin: 3em 0 0;
}
ul.breadcrumbs {
display: flex;
margin-bottom: .5em;
}
ul.breadcrumbs li a{
color: black;
margin-right: .5em;
font-weight: bold;
}
h1 {
margin-top: 0;
}
.sub-desc {
width: 80%;
margin: 0 auto;
}
ul.featured-cabins {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 200px));
grid-gap: 1em;
width: 100%;
place-content: center;
margin-top: 4em;
}
.cabin-cta span{
color: black;
}
.cabin-cta:after{
background: black;
}
@media (min-width: 900px) {
.hero {
padding: 4em;
}
ul.featured-cabins {
place-content: flex-start;
}
.bread-wrapper {
display: unset;
}
.sub-desc {
width: 100%;
}
}