2016-06-30 22:01:04 -08:00
|
|
|
nav {
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont,
|
|
|
|
|
"Segoe UI", "Roboto", "Oxygen",
|
|
|
|
|
"Ubuntu", "Cantarell", "Fira Sans",
|
|
|
|
|
"Droid Sans", "Helvetica Neue", sans-serif;
|
2016-07-08 05:03:40 -08:00
|
|
|
height: 37px;
|
|
|
|
|
line-height: 37px;
|
2016-06-30 22:01:04 -08:00
|
|
|
vertical-align: middle;
|
|
|
|
|
color: #9B9B9B;
|
|
|
|
|
cursor: default;
|
2016-07-03 12:35:45 -08:00
|
|
|
-webkit-user-select: none;
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.single {
|
|
|
|
|
text-align: center;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs {
|
|
|
|
|
border-bottom: 1px solid #333;
|
2016-07-08 05:03:40 -08:00
|
|
|
max-height: 37px;
|
2016-06-30 22:01:04 -08:00
|
|
|
display: flex;
|
|
|
|
|
flex-flow: row;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li:first-child {
|
2016-07-08 05:03:40 -08:00
|
|
|
margin-left: 76px;
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li {
|
|
|
|
|
list-style-type: none;
|
|
|
|
|
flex-grow: 1;
|
|
|
|
|
text-align: center;
|
2016-07-06 15:39:26 -08:00
|
|
|
position: relative;
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li.is_active {
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li span {
|
2016-07-06 15:39:26 -08:00
|
|
|
transition: color .2s ease;
|
2016-06-30 22:01:04 -08:00
|
|
|
display: block;
|
2016-07-06 15:39:26 -08:00
|
|
|
border-left: 1px solid transparent;
|
|
|
|
|
border-right: 1px solid transparent;
|
2016-06-30 22:01:04 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li.is_active span {
|
|
|
|
|
border-left-color: #333;
|
|
|
|
|
border-right-color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li.is_active:last-child span {
|
|
|
|
|
border-right-color: transparent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li.is_active::before {
|
|
|
|
|
position: absolute;
|
|
|
|
|
content: ' ';
|
|
|
|
|
border-bottom: 1px solid #000;
|
|
|
|
|
display: block;
|
|
|
|
|
left: 1px;
|
|
|
|
|
right: 1px;
|
|
|
|
|
bottom: -1px;
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-06 15:39:26 -08:00
|
|
|
.tabs li:not(.is_active):hover span {
|
2016-06-30 22:01:04 -08:00
|
|
|
color: #ccc;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li.has_activity, .tabs li.has_activity:hover {
|
|
|
|
|
color: #50E3C2;
|
|
|
|
|
}
|
2016-07-06 15:39:26 -08:00
|
|
|
|
|
|
|
|
/* The close button */
|
|
|
|
|
|
|
|
|
|
.tabs li i {
|
|
|
|
|
transition: opacity .2s ease,
|
|
|
|
|
color .2s ease,
|
|
|
|
|
transform .25s ease,
|
|
|
|
|
background-color .1s ease;
|
|
|
|
|
pointer-events: none;
|
|
|
|
|
position: absolute;
|
|
|
|
|
right: 7px;
|
|
|
|
|
top: 7px;
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 14px;
|
|
|
|
|
height: 14px;
|
|
|
|
|
border-radius: 100%;
|
|
|
|
|
color: #e9e9e9;
|
|
|
|
|
opacity: 0;
|
|
|
|
|
transform: scale(.95);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li:hover i {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
transform: none;
|
|
|
|
|
pointer-events: all;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li i:hover {
|
|
|
|
|
background-color: rgba(255,255,255, .13);
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li i:active {
|
|
|
|
|
background-color: rgba(255,255,255, .1);
|
|
|
|
|
color: #909090;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabs li i .icon {
|
|
|
|
|
position: absolute;
|
|
|
|
|
left: 4px;
|
|
|
|
|
top: 4px;
|
|
|
|
|
width: 6px;
|
|
|
|
|
height: 6px;
|
|
|
|
|
}
|