-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueries.css
76 lines (61 loc) · 1.42 KB
/
queries.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
@media (max-width: 768px) {
h1, h2 {
margin-bottom: 20px;
}
.row {
width: 95%;
}
.headline {
max-width: 100%;
}
.form-container {
flex-direction: column;
}
.form-container button {
width: 35%;
height: 4rem;
margin: 0 auto;
}
.booking-form {
flex-direction: column;
margin-bottom: 12px;
}
.input-container {
border-left: none;
border-right: none;
border-top: 1px solid #E0E0E0;
border-bottom: 1px solid #E0E0E0;
}
.about-content {
display: flex;
flex-direction: column;
gap: 1rem;
}
.about-content .about-paragraph-container:last-child {
flex-direction: column-reverse;
}
.accomodations-content {
grid-auto-rows: 1fr;
grid-template-rows: unset;
grid-template-columns: unset;
}
.accomodations-content .accomodations-image-container img {
height: 100%;
}
.accomodations-content .accomodations-image-container:first-child {
grid-column: unset;
}
.testimonials-content {
flex-direction: column;
}
.testimonial-box {
border-bottom-left-radius: unset;
height: 300px;
}
.accomodations-title-line {
flex-direction: column;
justify-content: unset;
align-items: flex-start;
margin-bottom: 2rem;
}
}