1
0
mirror of https://github.com/alice-lg/alice-lg.git synced 2024-05-11 05:55:03 +00:00

215 lines
3.2 KiB
SCSS
Raw Normal View History

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;
2018-08-05 12:27:42 +02:00
font-size: 12px;
2018-07-16 22:54:15 +02:00
}
}
2018-08-05 12:27:42 +02:00
.routes-header-container {
text-decoration: none;
a:hover {
text-decoration: none;
}
}
.routes-quick-links {
margin-bottom: 0.75em;
margin-top: -0.5em;
text-align: right;
span {
color: #888;
}
ul {
padding: 0px;
margin: 0px;
display: inline-block;
}
li {
display: inline-block;
padding: 0px 4px;
margin: 0px 0px 0px 8px;
background: white;
border-radius: 3px;
&.filtered a {
color: orange;
}
&.received a {
color: green;
}
&.not-exported a {
color: red;
}
}
}
2018-08-05 16:28:48 +02:00
/*
* Related Peers
*/
.related-peers {
$tabHeight: 23px;
$shadowOffset: 3px;
display: block;
position: absolute;
overflow: hidden;
padding: $shadowOffset $shadowOffset 0px $shadowOffset;
margin: 0px;
list-style: none;
top: -$tabHeight - $shadowOffset;
li {
height: $tabHeight;
line-height: $tabHeight;
display: inline-block;
padding: 0px 5px;
margin: 0px 10px 0px 0px;
border-bottom: 1px solid #ffffff;
background: #ffffff;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
box-shadow: 0px 1px 3px #aaa;
&.active {
font-weight: bold;
a {
color: #222;
}
}
a, a:hover {
text-decoration: none;
}
}
}
.has-related-peers {
.details-main {
padding-top: 21px;
}
}