-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBooking.css
77 lines (64 loc) · 1.16 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
75
76
77
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap");
* {
margin: 0;
padding: 0;
}
body {
font-family: "Poppins";
display: flex;
background-color: rgb(214, 215, 215);
}
.container {
width: 500px;
height: 500px;
border: 2px solid red;
background-color: rgb(163, 248, 186);
margin-left: 250px;
margin-top: 50px;
border-radius: 50px;
box-shadow: 0 0 15px 3px rgb(154, 152, 152);
}
.container .card {
display: flex;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
}
.container .card .heading {
margin: 20px 0;
letter-spacing: 2px;
font-size: 30px;
color: rgb(0, 0, 0);
}
th,
td {
padding-top: 10px;
padding-bottom: 20px;
padding-left: 30px;
padding-right: 40px;
}
.card .Collected {
color: rgb(10, 241, 10);
}
.card .Pending {
color: red;
}
.chart{
margin: 50px 200px;
background-color: rgb(163, 248, 186);
width: 500px;
height: 500px;
border-radius: 50px;
box-shadow: 0 0 10px 3px rgb(89, 89, 89);
}
.chart .head{
text-align: center;
margin-top:5px;
}
.chart .images{
margin-top:20px;
}
.chart img{
width: 500px;
height: 430px;
}