-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathticket.css
More file actions
executable file
·81 lines (76 loc) · 2.02 KB
/
Copy pathticket.css
File metadata and controls
executable file
·81 lines (76 loc) · 2.02 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
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.body {
background-image: url("Images/bac.png");
/* background-size: cover; Cover the entire element */
height: 100vh; /* Full viewport height */
width: 100%; /* Full width of the containing block */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Do not repeat the image */
}
.ticket-div {
padding: 60px 20px;
background-color: #213444;
width: 1100px;
height: 600px;
margin: auto;
margin-top: 40px;
border-radius: 15px;
}
.ticket-div h1 {
font-size: 28px;
color: #bb1e3b;
margin-top: -50px;
font-family: "Poppins", sans-serif;
font-weight: 700;
font-style: normal;
margin-left: 10px;
}
.ticket-div .show-time {
display: flex;
flex-direction: column;
}
table {
width: 80%;
border-collapse: collapse;
margin: 10px 0 0 10px;
background-color: #213444; /* Semi-transparent background */
border-radius: 1px; /* Rounded corners */
overflow: hidden; /* Ensure rounded corners are visible */
}
th {
background-color: #bb1e3b; /* Heading background color */
color: #fff; /* Text color for headings */
padding: 10px;
text-align: left;
font-family: "Poppins", sans-serif;
font-weight: 700;
font-style: normal;
font-size: 20px;
border-bottom: 1px solid #30465a; /* Adds a small line after each row */
}
.wed {
height: 10px;
}
td {
padding: 10px;
border-bottom: 0.1px solid #30465a;
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 20px;
color: #fff;
text-align: left;
width: 240px;
}
tr {
border-bottom: 0.5px solid #30465a; /* Adds a small line after each row */
}
/* Optional: add a little space between table rows */
tr + tr {
margin-top: 10px;
}