-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
230 lines (199 loc) · 3.12 KB
/
style.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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
font-size: 20px;
overflow-x: hidden;
background-color: rgb(214, 235, 235);
}
header{
background-image: url('header.jpg');
background-size: cover;
background-repeat: no-repeat;
height: 100vh;
}
.clearfix:after{
content: ",";
visibility: hidden;
display: block;
height: 0px;
clear: both;
}
.row{
max-width: 1180px;
margin: 0 auto;
}
#logo{
color:red;
}
.logo{
margin:0px;
padding:5px 2px;
font-size: 3rem;
font-weight: bold;
float: left;
}
.main-nav{
float: center;
padding:2rem;
}
.booking{
float: right;
margin-top: -10rem;
}
.main-nav li{
display: inline-block;
list-style: none;
margin-left: 40px;
}
.main-nav li a{
color: #fff;
text-decoration: none;
font-size: 100%;
font-weight: 100;
}
.booking{
padding:2px;
margin-top: -50px;
list-style: none;
}
.booking li a{
padding: 1rem;
color: #fff;
text-decoration: none;
font-size: 100%;
}
.main-content{
color: #fff;
font-size: 15px;
text-align: center;
position: absolute;
top:70%;
left:50%;
transform: translate(-50%,-50%);
}
.myBtn{
display:inline-block;
padding: 10px 30px;
font-weight: lighter;
text-decoration: none;
text-transform: uppercase;
border-radius: 200px;
transition: background-color 0.2s, border 0.2s, color 0.2;
}
.myBtn-full{
background-color: #0000FF;
color: #fff;
margin-right: 15px;
}
.myBtn-half{
background-color: #FF0000;
color: #fff;
margin-right: 15px;
}
#myBtn{
float: right;
justify-content: right;
margin: 5px 5px;
font-size: 15px;;
}
a{
color: white;
}
a:visited{
color:white;
}
.main-content h1{
text-overflow: ellipsis;
overflow:hidden;
}
.modal {
display: none; /* Hidden by default */
position: fixed; /* Stay in place */
z-index: 1; /* Sit on top */
padding-top: 50px; /* Location of the box */
left: 0;
top: 0;
width: 100%; /* Full width */
height: 100%; /* Full height */
overflow: auto; /* Enable scroll if needed */
background-color: rgb(0,0,0); /* Fallback color */
background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
background-color: #5c6bf1;
margin: auto;
padding: 20px;
width: 60%;
}
/* The Close Button */
.close {
color: #aaaaaa;
float: right;
font-size: 28px;
font-weight: bold;
}
.close:hover,
.close:focus {
color: #000;
text-decoration: none;
cursor: pointer;
}
.hide {
display:none;
}
.card-body:hover{
background-color:orangered;
color:white;
}
.card-body:hover + .hide {
display: inline-block;
color:white;
background-color: orangered;
}
.portfolio{
float: left;
width: 100%;
padding:80px 0px;
}
.portfolio .portfolio-content{
float: left;
width: 100%;
}
.portfolio .portfolio-content .card{
float:left;
width: 33%;
padding:15px;
background-color:#292929;
}
.foot{
margin: auto;
width: 50%;
padding: 10px;
}
.foot ul li{
display:inline;
padding: 10px;
}
a{
color: white;
text-decoration: none;
}
a:link{
color: white;
text-decoration: none;
}
.review ul li{
display:inline-flex;
padding: 0px;
}
.review p{
text-align: left;
}
.media-body ul li{
display: inline-flex;
padding: 5px;
}