-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
79 lines (63 loc) · 1.06 KB
/
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
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
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap');
*{
font-family: 'Ubuntu Condensed', sans-serif;
color: rgb(240,240,240);
font-size:35px;
}
body{
display: flex;
justify-content: center;
height: 100vh;
align-items: center;
background-color: rgb(251,199,127);
}
header {
padding: 10px;
}
.departures{
background-color: rgb(6,6,6);
border-radius: 10px;
padding:10px;
}
.departures table{
background-color: rgb(46,46,46);
text-align:left;
}
.departure table td{
height: 50px;
}
.departures table div{
border: solid 4px rgb(26,26,26);
background-color: rgb(0,0,0);
float: left;
height:40px;
}
#time{
width:160px;
}
#destination {
width: 260px;
}
#flight {
width: 205px;
}
#gate {
width: 135px;
}
#remarks{
width:260px;
}
.flip{
animation: 0.5s linear flipping;
}
@keyframes flipping {
0%{
transform: rotateX(0deg);
}
50%{
transform: rotateX(90deg);
}
100% {
transform: rotateX(0deg);
}
}