-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsite.css
More file actions
67 lines (54 loc) · 1006 Bytes
/
site.css
File metadata and controls
67 lines (54 loc) · 1006 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
58
59
60
61
62
63
64
65
body{
font-family: Arial, Helvetica, sans-serif;
}
.hotels-header h2{
padding: 20px;
text-align: center;
font-size: 16px;
}
.hotels-body{
margin: auto;
max-width: 90%;
}
.hotel-item{
border: 1px solid #dfdfdf;
border-radius: 2px;
padding: 16px;
display: flex;
justify-content: space-between;
box-shadow: 2px 2px 3px;
margin-top: 8px;
}
.hotel-name-container{
max-width: 250px;
}
.hotel-name{
text-transform: uppercase;
font-weight: 700;
font-size: 32px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.hotel-description-container{
padding-top: 10px;
max-width: 250px;
}
.hotel-description{
font-size: 20px;
font-weight: 300;
}
.hotel-phone-container{
max-width: 250px;
}
.hotel-phone{
text-transform: uppercase;
font-weight: bold;
font-size: 32px;
}
.stars{
max-width: 100px;
text-align: center;
font-size: 32px;
}
.star:hover{
color: rgb(255, 177, 59);
}