-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.scss
More file actions
91 lines (75 loc) · 1.31 KB
/
main.scss
File metadata and controls
91 lines (75 loc) · 1.31 KB
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
// $color-pack = false
@import "./fonts", "./loading";
li {
list-style-position: inside;
}
a {
// color: $primary;
text-decoration: none;
}
main {
margin-top: 116px;
}
.search__wrap {
flex: 1;
}
.search-icon--mobile {
display: none;
}
.bus-table tbody {
display: block;
max-height: 60vh;
overflow-y: scroll;
}
.bus-table thead,
tbody tr {
display: table;
width: 100%;
table-layout: fixed;
}
.bus-table thead th {
width: 100%;
}
.scroll-here {
border-top: 1px solid #4caf50;
}
.fade-enter-active,
.fade-leave-active {
transition: 0.4s all ease-out;
transform-origin: 50% 100%;
transform: translate3d(0, 0, 0);
}
.fade-enter,
.fade-leave-to {
opacity: 0;
transform: translateY(30px);
}
.progress-linear__bar__determinate.primary {
animation: bg-pan-right 6s linear infinite alternate both;
background: linear-gradient(270deg, #cc6aa5, #3e91cc, #2dcca7);
background-size: 600% 100%;
}
@keyframes bg-pan-right {
0% {
background-position: 0% 50%;
}
100% {
background-position: 100% 50%;
}
}
@media only screen and (max-width: 768px) {
.search-expand {
position: absolute;
z-index: 999;
top: 3px;
left: 0;
width: 75%;
transition: 0.4s all;
}
.hide-search--mobile {
display: none;
}
.search-icon--mobile {
display: block;
}
}