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
|
.mixin {
direction: rtl;
}
#mixin {
unicode-bidi: embed;
}
.bible-quote {
direction: rtl;
unicode-bidi: embed;
}
.nested_mixin_1 {
letter-spacing: -1px;
}
.nested_mixin_1 #mixin {
white-space: pre;
}
.nested {
letter-spacing: -1px;
}
.nested #mixin {
white-space: pre;
}
#nested_mixin_1 {
color: red;
}
#nested_mixin_1 .mixin {
color: yellow;
}
pre {
color: red;
}
pre .mixin {
color: yellow;
}
div.nest a:hover .deep p,
div.nest a:focus .deep p {
widows: 3;
}
.nest_deep a:hover .deep p,
.nest_deep a:focus .deep p {
widows: 3;
}
.mixout {
border-color: orange;
}
.borders {
border-style: dashed;
}
#namespace .borders {
border-style: dotted;
}
#namespace .biohazard {
content: "death";
}
#namespace .biohazard .man {
color: transparent;
}
#theme > .mixin {
background-color: grey;
}
#container {
color: black;
border-color: orange;
background-color: grey;
}
#header .milk {
color: white;
background-color: grey;
}
#header #cookie {
border-style: dashed;
}
#header #cookie .chips {
border-style: dotted;
}
#header #cookie .chips .calories {
color: black;
border-color: orange;
background-color: grey;
}
.secure-zone {
color: transparent;
}
.outer .inner {
padding: 3px;
}
.tx {
padding: 3px;
padding: 3px;
}
.clear {
padding: -100px;
}
.clear:before {
display: table;
content: "";
}
.fallback {
margin: 2px;
padding: -100px;
}
.fallback:before {
display: table;
content: "";
}
.row {
margin: 2px;
padding: -100px;
}
.row:before {
display: table;
content: "";
}
|