-
Notifications
You must be signed in to change notification settings - Fork 0
/
booking.css
74 lines (65 loc) · 1.62 KB
/
booking.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
:root{
--orange:#0066FF;
}
@import url('https://fonts.googleapis.com/css?family=Montserrat|Open+Sans|Roboto');
*{
margin:0;
padding: 0;
outline: 0;
}
.filter{
position: absolute;
left: 0;
top: 0;
bottom: 0;
right: 0;
z-index: 1;
/* background: rgb(233,76,161);
background: -moz-linear-gradient(90deg, rgba(233,76,161,1) 0%, rgba(199,74,233,1) 100%);
background: -webkit-linear-gradient(90deg, rgba(233,76,161,1) 0%, rgba(199,74,233,1) 100%);
background: linear-gradient(90deg, rgba(233,76,161,1) 0%, rgba(199,74,233,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e94ca1",endColorstr="#c74ae9",GradientType=1); */
background-color: #0066ff5d;
opacity: .7;
}
table{
position: absolute;
z-index: 2;
left: 50%;
top: 50%;
transform: translate(-50%,-50%);
width: 60%;
border-collapse: collapse;
border-spacing: 0;
box-shadow: 0 2px 15px rgba(64,64,64,.7);
border-radius: 12px 12px 0 0;
overflow: hidden;
}
td , th{
padding: 15px 20px;
text-align: center;
}
th{
/* background-color: #ba68c8; */
background-color: #0066FF;
color: #fafafa;
font-family: 'Open Sans',Sans-serif;
font-weight: 200;
text-transform: uppercase;
}
tr{
width: 100%;
background-color: #fafafa;
font-family: 'Montserrat', sans-serif;
}
tr:nth-child(even){
background-color: #eeeeee;
}
a{
text-decoration: none;
color: rgba(0, 0, 0, 0.904);
}
a:hover{
color: #0066FF;
text-decoration: underline;
}