-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotelstyle.css
114 lines (91 loc) · 2 KB
/
hotelstyle.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
102
103
104
105
106
107
108
109
110
111
112
113
114
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
overflow: auto;
font-family: 'Bree Serif', serif;
}
a{
text-decoration: none;
color: black;
}
a:hover{
color: white;
}
.navbar{
height: fit-content;
/* border: 2px solid black; */
display: flex;
flex-wrap: wrap;
justify-content: space-around;
background: linear-gradient(to right, rgb(185, 60, 60), rgb(47, 137, 240));
}
#logo{
display: flex;
justify-content: space-evenly;
align-items: center;
}
#logo h2{
margin: 4px;
display: inline-block;
}
.logo{
margin: 4px;
width: 80px;
height: 80px;
}
.nav{
flex-grow: 3;
/* border: 1px solid blue; */
display: flex;
justify-content: flex-end;
align-items: center;
margin-right: 20px;
}
.item{
/* border: 1px solid black; */
flex-basis: 70px;
flex-shrink: 10;
}
.button{
color: white;
border: 0px;
height: 50px;
width: 200px;
cursor: pointer;
border-radius: 30px;
background-color: rgba(0, 0, 0, 0.4);
}
.button:hover{
color: black;
}
#header{
background:
linear-gradient(rgba(32, 29, 44,0.8),rgba(146, 141, 171, 0.3)), url(https://wallpaperaccess.com/full/2690978.jpg) no-repeat center center/cover ;
height: 90vh;
}
.container{
margin-top: 100px;
display: flex;
flex-flow: column;
align-items: center;
}
.info { display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
grid-template-rows: 1fr 1fr 1fr;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas:
"infoimg infoimg infodata infodata"
"infoimg infoimg infodata infodata";
}
.infoimg {
grid-area: infoimg;
width: 50vw;
height: 100vh;
background: url(https://images.unsplash.com/photo-1596386461350-326ccb383e9f?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8NHx8aG90ZWwlMjBpbnRlcmlvcnxlbnwwfHwwfHw%3D&w=1000&q=80) center center/cover;
}
.infodata {
grid-area: infodata;
background: linear-gradient(grey,blue);
}