-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
57 lines (47 loc) · 880 Bytes
/
site.css
File metadata and controls
57 lines (47 loc) · 880 Bytes
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
body {
font-family: Arial, Helvetica, sans-serif;
}
.hotels-header h2 {
padding: 20px;
text-align: center;
}
.hotels-body {
margin: auto;
max-width: 90%;
}
.hotels-item {
padding: 16px;
border-radius:3px;
border:1px solid #9c9c9c;
display: flex;
justify-content: space-between;
margin-bottom: 8px;
}
.item-name {
text-transform: uppercase;
font-size: 32px;
font-weight: 700;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.item-description {
font-size: 20px;
font-weight: 300;
}
.item-phone {
text-transform: uppercase;
font-size: 32px;
font-weight: 700;
}
.hotel-name-container {
max-width: 300px;
}
.hotel-description-container {
padding-top: 10px;
max-width: 300px;
}
.hotel-telephone-container {
max-width: 250px;
}
.item-stars {
max-width: 100px;
}