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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
/*
Mixins
*/
.mixin {
direction: rtl;
}
#mixin {
unicode-bidi: embed;
}
.bible-quote {
.mixin;
#mixin;
}
/*
Nested
*/
.nested_mixin_1 {
letter-spacing: -1px;
#mixin {
white-space: pre;
}
}
.nested {
.nested_mixin_1;
}
#nested_mixin_1 {
color: red;
.mixin {
color: yellow;
}
}
pre {
#nested_mixin_1;
}
div.nest {
a {
&:hover, &:focus {
.deep p {
widows: 3;
}
}
}
}
.nest_deep {
div.nest;
}
/*
*/
.mixout {
border-color: orange;
}
.borders {
border-style: dashed;
}
#namespace {
.borders {
border-style: dotted;
}
.biohazard {
content: "death";
.man {
color: transparent;
}
}
}
#theme {
> .mixin {
background-color: grey;
}
}
#container {
color: black;
.mixout;
#theme > .mixin;
}
#header {
.milk {
color: white;
#theme > .mixin;
}
#cookie {
.chips {
#namespace .borders;
.calories {
#container;
}
}
.borders;
}
}
.secure-zone {
#namespace .biohazard .man;
}
//
// Direct access
//
.outer {
.inner {
padding: 3px;
}
}
.tx {
.outer .inner;
// Same
.outer > .inner;
}
//
// Fallbacks
//
.clear {
padding: -100px;
&:before {
display: table;
content: "";
}
}
.fallback {
margin: 2px;
.clear();
}
#fallback {
.bam() {
.row {
margin: 2px;
.clear();
}
}
}
#fallback > .bam();
|