revisioning

This commit is contained in:
Hallaathrad
2016-04-11 18:24:19 -04:00
parent 4637ac1c7d
commit f88f5dd5d4
3 changed files with 44 additions and 14 deletions

View File

@ -37,6 +37,9 @@
//** Link hover decoration. //** Link hover decoration.
@link-hover-decoration: underline; @link-hover-decoration: underline;
//## Night mode styles
@night-body-bg: @gray-dark;
@night-text-color: #999;
//== Typography //== Typography
// //

View File

@ -1134,13 +1134,16 @@ code {
} }
.night { .night {
background-color: #333; background-color: @night-body-bg;
color: #999; color: @night-text-color;
.btn-group, .btn-group,
.text-success, .text-success,
.challenge-list-header, .challenge-list-header,
.fcc-footer { .fcc-footer {
background-color: #333; background-color: @night-body-bg;
}
hr {
background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
} }
.navbar-default .navbar-nav > li > a { .navbar-default .navbar-nav > li > a {
color: #CCC; color: #CCC;
@ -1148,32 +1151,53 @@ code {
background-color: #666; background-color: #666;
} }
} }
a, .input-group-addon { a, .input-group-addon, .challenge-instructions a, .challenge-instructions #MDN-links a {
color: #CCC; color: #CCC;
} }
.fa-github-square {
color: @brand-primary;
&:hover {
color: #CCC;
}
}
.black-text { .black-text {
color:#111; color:#111;
} }
code { code {
background-color: #2A2A2A; background-color: #999;
color: #006400; color: @brand-primary;
} }
.fcc-footer { .fcc-footer {
a { a {
&hover { &hover {
background-color: #333; background-color: @night-body-bg;
} }
} }
} }
.btn-primary { .btn-primary {
background-color: #006400; background-color: @brand-primary;
border-color: #292929;
color:#CCC; color:#CCC;
transition: color 0.2s, background-color 0.2s; transition: color 0.2s, background-color 0.2s;
&:hover { &:hover {
background-color: #ABABAB!important; background-color: #ABABAB!important;
color: #333!important; color: @night-body-bg!important;
} }
} }
//** Profile's activity board
.cal-heatmap-container {
background-color: @night-body-bg;
}
.graph-rect {
fill: @night-text-color !important
}
//** Profile's odd rows
.table-striped > tbody > tr:nth-child(odd) {
background-color: @gray;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td {
border-color: @night-text-color;
}
} }
@import "chat.less"; @import "chat.less";

View File

@ -318,7 +318,7 @@
.night { .night {
.map-fixed-header { .map-fixed-header {
background-color: #333; background-color: @night-body-bg;
} }
.map-aside { .map-aside {
border-left-color:#222; border-left-color:#222;
@ -328,10 +328,13 @@
} }
} }
#map-filter, .input-group-addon { #map-filter, .input-group-addon {
border-color: #222; border-color: #292929;
background-color: #666; background-color: #666;
color:#ABABAB; color:#ABABAB;
} }
.map-accordion span.no-link-underline {
color: @brand-primary;
}
.map-accordion h2 > a { .map-accordion h2 > a {
background:#666; background:#666;
} }
@ -340,12 +343,12 @@
} }
.input-group-addon { .input-group-addon {
&.filled{ &.filled{
background: #555; background: @gray;
border-color: #000d00; border-color: #292929;
color: white; color: white;
} }
} }
.challenge-title { .challenge-title {
color: #999; color: @night-text-color;
} }
} }