-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle_booking.css
More file actions
105 lines (96 loc) · 2.03 KB
/
Copy pathstyle_booking.css
File metadata and controls
105 lines (96 loc) · 2.03 KB
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
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
body,html{
height: 100%;
margin: 0;
font-family: 'poppins',sans-serif;
}
.background{
height:100vh;
background-image: url('background1.jpeg');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.booking-form{
background-color: rgba(255,255,255,0.7);
padding: 20px;
border-radius: 10px;
max-width: 500px;
width: 80%;
margin: 0 auto;
}
.booking-form h2{
text-align: center;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: normal;
}
.booking-form form{
display: flex;
flex-direction: column;
}
.booking-form input{
padding: 8px;
border: 1px solid #ccc;
border-radius: 5px;
}
.booking-form button{
font-family: "Poppins", sans-serif;
font-weight: 300;
font-style: normal;
margin-top:10px;
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.booking-form button:hover{
background-color: #45a049;
}
label{
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
nav {
display:flex;
align-items:center;
justify-content: space-between;
flex-wrap: wrap;
text-align: center;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: normal;
}
nav ul li {
display:inline-block;
margin: 10px 20px;
font-weight: 400;
}
nav ul li a {
color:#f5f0f0;
font-weight: bolder;
text-decoration: none;
font-size: 18px;
position:sticky;
}
nav ul li a::after {
content: ' ';
width: 0;
height: 3px;
background-color: #f30404;
position: absolute;
left:0;
bottom: -6px;
transition: 0.75s;
}
nav ul li a:hover::after {
width: 100%;
}
nav ul li #sign-in,
nav ul li #sign-up {
margin-left: auto;
margin-right: 0;
}