-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
122 lines (88 loc) · 1.41 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: sans-serif;
}
h3 {
text-align: center;
margin: 10px;
}
h2 {
margin: 10px;
}
i {
cursor: pointer;
}
a {
text-decoration: none;
color: #fff;
}
.container-center {
display: flex;
}
.navbar {
background-color: #e38b20;
color: white;
padding: 25px 60px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin-bottom: 30px;
}
.nav-ticket {
position: relative;
background-color: #fff;
color: #212524;
padding: 10px;
border-radius: 4px;
}
.nav-ticket i {
font-size: 30px;
}
.ticketAmount {
position: absolute;
top: -15px;
right: -10px;
font-size: 16px;
background-color: #f7ca92;
color: black;
padding: 3px;
border-radius: 3px;
}
.ticket {
width: 30%;
margin: 10px;
display: grid;
border: 2px solid #e38b20;
background-color: cyan;
border-radius: 4px;
}
.ticket img {
width: 100%;
display: flex;
gap: 1rem 2rem;
border-radius: 2px 2px 0 0;
}
.price {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
}
.buttons {
display: flex;
flex-direction: row;
gap: 8px;
font-size: 17px;
margin: 10px;
}
.fa-minus {
color: red;
}
.fa-plus {
color: blue;
}