styles/_blocks.less
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
.note { .mix-titled-block(@lighter-blue, @dark-blue, @light-blue, @fa-var-thumbtack);}
.tip {.mix-titled-block(@lighter-green, @dark-green, @light-green, @fa-var-check-circle);}
.warning {.mix-titled-block(@lighter-yellow, @dark-yellow, @light-yellow, @fa-var-exclamation-triangle);}
.sidebar {.mix-titled-block(@light-gray, @gray-5, @light-gray, @fa-var-info-circle);}
.output {.mix-box(@light-gray, @gray-5, @light-gray);}
.terminal {
.mix-box(@gray-2, @gray-e, @gray-c);
.mix-responsive;
padding: 0 3px;
border: 2px solid @gray-9;
white-space: pre-wrap;
border-top: 10px solid @gray-9;
p, p:first-child {
margin-top: -40px;
margin-bottom: 0;
text-shadow: none;
font-weight: normal;
font-family: @monospace-font;
font-size: 85%;
color: @gray-e;
&:first-child {
margin-top: 0px;
}
&:before {
font-family: @monospace-font;
font-style: normal;
font-weight: bold;
color: @dark-green;
content: "$ ";
}
}
}
.terminal-su {
.terminal;
p, p:first-child {
&:before {
color: @bright-red;
content: "# ";
}
}
}
div .terminal {
margin: 2px auto;
}
|