2017-05-16 13:34:00 +02:00
|
|
|
|
2018-07-30 22:59:59 +02:00
|
|
|
@-webkit-keyframes fadeSmooth {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
left: -60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
left: -87px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@keyframes fadeSmooth {
|
|
|
|
from {
|
|
|
|
opacity: 0;
|
|
|
|
left: -60px;
|
|
|
|
}
|
|
|
|
|
|
|
|
to {
|
|
|
|
opacity: 1;
|
|
|
|
left: -87px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.fadeIn {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-05-16 13:34:00 +02:00
|
|
|
.table-routes {
|
|
|
|
// Make pseudo links
|
|
|
|
td {
|
|
|
|
color: #337ab7;
|
|
|
|
text-decoration: none;
|
|
|
|
|
2018-07-05 17:02:32 +02:00
|
|
|
span:hover {
|
2017-05-16 13:34:00 +02:00
|
|
|
text-decoration: underline;
|
|
|
|
}
|
2018-07-30 22:59:59 +02:00
|
|
|
|
|
|
|
span {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
2017-05-16 13:34:00 +02:00
|
|
|
}
|
|
|
|
|
2017-05-23 15:53:15 +02:00
|
|
|
.noexport-reason,
|
2017-05-16 13:34:00 +02:00
|
|
|
.reject-reason {
|
|
|
|
font-size: 90%;
|
|
|
|
color: #333;
|
|
|
|
margin-bottom: 1px;
|
2018-08-03 14:51:45 +02:00
|
|
|
|
|
|
|
a {
|
|
|
|
color: #aa0000;
|
|
|
|
}
|
2017-05-16 13:34:00 +02:00
|
|
|
}
|
2018-07-30 22:59:59 +02:00
|
|
|
|
|
|
|
|
|
|
|
.primary-route {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
color: #555;
|
|
|
|
width: 1.5ex;
|
|
|
|
display: inline-block;
|
|
|
|
text-decoration: none;
|
|
|
|
border: none;
|
|
|
|
|
|
|
|
div {
|
|
|
|
display: none;
|
|
|
|
top: -5px;
|
|
|
|
left: -87px;
|
|
|
|
background: rgba(0, 0, 0, 0.45);
|
|
|
|
color: white;
|
|
|
|
position: absolute;
|
|
|
|
padding: 5px;
|
|
|
|
border-radius: 3px;
|
|
|
|
font-weight: bold;
|
|
|
|
|
|
|
|
-webkit-animation-name: fadeSmooth;
|
|
|
|
animation-name: fadeSmooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
div {
|
|
|
|
display: block;
|
|
|
|
|
|
|
|
-webkit-animation-duration: 0.5s;
|
|
|
|
animation-duration: 0.5s;
|
|
|
|
-webkit-animation-fill-mode: both;
|
|
|
|
animation-fill-mode: both;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.route-network {
|
|
|
|
display: inline-block;
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2017-05-16 13:34:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.table-protocols {
|
|
|
|
.date-since {
|
|
|
|
white-space: nowrap;
|
|
|
|
}
|
2018-07-06 15:03:03 +02:00
|
|
|
background: white;
|
2017-05-16 13:34:00 +02:00
|
|
|
}
|
|
|
|
|
2018-07-16 22:54:15 +02:00
|
|
|
|
|
|
|
.routes-loading.card {
|
|
|
|
p {
|
|
|
|
font-family: monospace;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|