-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
38 lines (35 loc) · 914 Bytes
/
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
/* google fonts import link */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..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");
.font-inter {
font-family: "Inter", sans-serif;
}
.font-raleway {
font-family: "Raleway", sans-serif;
}
.font-roboto {
font-family: "Roboto", sans-serif;
}
body {
box-sizing: border-box;
}
#display-selected-seats div {
display: flex;
margin-top: 18px;
justify-content: space-between;
}
#display-selected-seats div p {
width: 25%;
color: #030712;
font-family: "Inter", sans-serif;
font-size: 16px;
font-weight: 500;
}
#display-selected-seats div p:nth-child(1) {
text-align: left;
}
#display-selected-seats div p:nth-child(2) {
text-align: center;
}
#display-selected-seats div p:nth-child(3) {
text-align: right;
}