Make section more specific

This commit is contained in:
Dennis Eichhorn 2017-05-10 21:26:48 +02:00
parent 551e0530be
commit a1f574d33f
2 changed files with 25 additions and 10 deletions

View File

@ -1,25 +1,29 @@
@import "_mixins", "_vars"; @import "_mixins", "_vars";
.box.orange { section.box.orange {
border-top: 3px solid #FBA026; border-top: 3px solid #FBA026;
} }
.box.red { section.box.red {
border-top: 3px solid #B8312F; border-top: 3px solid #B8312F;
} }
.box.green { section.box.green {
border-top: 3px solid #41A85F; border-top: 3px solid #41A85F;
} }
.box.blue { section.box.blue {
border-top: 3px solid #2C82C9; border-top: 3px solid #2C82C9;
} }
.box.purple { section.box.purple {
border-top: 3px solid #553982; border-top: 3px solid #553982;
} }
section.box.darkblue {
border-top: 3px solid #2969B0;
}
.box { .box {
@include box-sizing(border-box); @include box-sizing(border-box);
display: inline-block; display: inline-block;

View File

@ -3949,6 +3949,11 @@ div.alert {
border: 2px solid #85b0ee; border: 2px solid #85b0ee;
color: #4865a5; } color: #4865a5; }
.slider {
overflow-x: auto; }
.slider ul {
display: inline; }
/* Global */ /* Global */
/* Content Container */ /* Content Container */
/* Content box */ /* Content box */
@ -4192,6 +4197,9 @@ article a {
.unseen { .unseen {
font-weight: bold; } font-weight: bold; }
[data-href] {
cursor: pointer; }
/* Global */ /* Global */
/* Content Container */ /* Content Container */
/* Content box */ /* Content box */
@ -4611,21 +4619,24 @@ main {
/* Content box */ /* Content box */
/* Navigation */ /* Navigation */
/* Colors */ /* Colors */
.box.orange { section.box.orange {
border-top: 3px solid #FBA026; } border-top: 3px solid #FBA026; }
.box.red { section.box.red {
border-top: 3px solid #B8312F; } border-top: 3px solid #B8312F; }
.box.green { section.box.green {
border-top: 3px solid #41A85F; } border-top: 3px solid #41A85F; }
.box.blue { section.box.blue {
border-top: 3px solid #2C82C9; } border-top: 3px solid #2C82C9; }
.box.purple { section.box.purple {
border-top: 3px solid #553982; } border-top: 3px solid #553982; }
section.box.darkblue {
border-top: 3px solid #2969B0; }
.box { .box {
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
-webkit-box-sizing: border-box; -webkit-box-sizing: border-box;