-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
52 lines (47 loc) · 841 Bytes
/
styles.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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: "Montserrat", sans-serif;
background-color: white;
padding-left: 20px;
padding-right: 20px;
padding-top: 40px;
padding-bottom: 40px;
}
.text {
padding-top: 10px;
padding-bottom: 10px;
}
.Ticket {
background-color: white;
display: flex;
padding-top: 10px;
padding-bottom: 10px;
margin: 0 auto;
box-shadow: 5px 9px 20px rgba(0, 0, 0, 0.15);
}
.Ticket2 {
background-color: #f3f5f8;
font-size: x-large;
display: flex;
max-width: 200px;
margin: 0 auto;
box-shadow: 5px 9px 20px rgba(0, 0, 0, 0.15);
}
.whitening {
background-color: white;
color: white;
}
.hide {
display: none;
}
.show {
display: flex;
}
.win {
transition-duration: 5s;
font-weight: bold;
}