-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathflt_widget.css
87 lines (68 loc) · 1.34 KB
/
flt_widget.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
@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; /* this relies on display set to flex...*/
height: 100vh;
align-items: center; /* this relies on giving it a height first...*/
background-color: rgb(251,199,127);
}
header {
padding: 10px;
}
.departures {
background-color: rgb(7,7,7);
border-radius: 10px;
padding: 10px;
}
.departures table {
background-color: rgb(46,46,46);
text-align: left;
}
.departures table td {
height: 50px;
}
.departures table div {
border: solid 4px rgb(26,26,26);
background-color: rgb(0, 0, 0);
float: left;
height: 40px;
}
/* space out the headers... */
#time {
width: 160px;
}
#destination {
width: 260px;
}
#flight {
width: 205px;
}
#gate {
width: 135px;
}
#remarks {
width: 260px;
}
/*-------------------------------
Animate the letter slots
--------------------------------*/
.flip {
animation: 0.5s linear flipping;
}
/* Define flipping function */
@keyframes flipping {
0% {
transform: rotateX(0deg);
}
50% {
transform: rotateX(90deg);
}
100% {
transform: rotateX(0deg);
}
}