-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathairbnb.css
101 lines (95 loc) · 1.62 KB
/
airbnb.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
* {
padding: 0;
margin: 0;
}
body {
font-family: "Poppins", sans-serif;
}
main {
width: 80%;
margin: 0 auto;
padding-top: 100px;
}
.box-title h1 {
font-size: 1.6rem;
}
.box-title{
display: flex;
justify-content: space-between;
align-items: center;
}
.box-title--btns{
display: flex;
}
.box-title--btn{
display: flex;
align-items: center;
margin-left: auto,
}
.box-title--btn a{
margin-left: 6px;
font-size: 1rem;
color:#222
}
.gallery{
display: grid;
grid-template-rows: 180px 180px;
grid-template-columns: 1fr 1fr 1fr 1fr;
margin-top: 30px;
gap: 10px;
}
.gallery div{
width: 100%;
height: 100%;
}
.gallery img{
width: 100%;
height: 100%;
}
.gallery .img1{
grid-row: 1 / 3;
grid-column: 1/3;
}
.gallery .img1 img{
border-top-left-radius: 5px;
}
.description-casa{
display: flex;
margin-right: 10px;
}
.logo-container {
padding: 0;
margin: 0;
text-align: left;
margin-bottom: 20px;
}
.logo {
padding: 10px;
margin: auto;
width: 150px;
height: auto;
}
.block {
border-radius: 20px;
padding: 20px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
float: right;
}
.group-blocks {
width: 100%;
min-width: 250px;
}
.block-a {
height: 400px;
margin-bottom: 10px;
background: transparent;
width: 280px;
}
.block-b{
height: 40px;
margin-top: 25px;
width: 230px;
border-radius: 20px;
padding: 25px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}