less 0.8.13 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +10 -1
- data/Rakefile +21 -3
- data/VERSION +1 -1
- data/bin/lessc +0 -8
- data/less.gemspec +138 -15
- data/lib/less.rb +67 -11
- data/lib/less/command.rb +24 -25
- data/lib/less/engine.rb +36 -140
- data/lib/less/engine/builder.rb +8 -0
- data/lib/less/engine/less.tt +374 -0
- data/lib/less/engine/nodes.rb +8 -0
- data/lib/less/engine/nodes/element.rb +150 -0
- data/lib/less/engine/nodes/entity.rb +73 -0
- data/lib/less/engine/nodes/function.rb +82 -0
- data/lib/less/engine/nodes/literal.rb +135 -0
- data/lib/less/engine/nodes/property.rb +112 -0
- data/lib/less/engine/nodes/selector.rb +39 -0
- data/lib/less/engine/parser.rb +3860 -0
- data/lib/vendor/treetop/.gitignore +7 -0
- data/lib/vendor/treetop/LICENSE +19 -0
- data/lib/vendor/treetop/README +164 -0
- data/lib/vendor/treetop/Rakefile +19 -0
- data/lib/vendor/treetop/benchmark/seqpar.gnuplot +15 -0
- data/lib/vendor/treetop/benchmark/seqpar.treetop +16 -0
- data/lib/vendor/treetop/benchmark/seqpar_benchmark.rb +107 -0
- data/lib/vendor/treetop/bin/tt +28 -0
- data/lib/vendor/treetop/lib/treetop.rb +8 -0
- data/lib/vendor/treetop/lib/treetop/bootstrap_gen_1_metagrammar.rb +45 -0
- data/lib/vendor/treetop/lib/treetop/compiler.rb +6 -0
- data/lib/vendor/treetop/lib/treetop/compiler/grammar_compiler.rb +42 -0
- data/lib/vendor/treetop/lib/treetop/compiler/lexical_address_space.rb +17 -0
- data/lib/vendor/treetop/lib/treetop/compiler/metagrammar.rb +3097 -0
- data/lib/vendor/treetop/lib/treetop/compiler/metagrammar.treetop +408 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes.rb +19 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/anything_symbol.rb +18 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/atomic_expression.rb +14 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/character_class.rb +23 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/choice.rb +31 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/declaration_sequence.rb +24 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/grammar.rb +28 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/inline_module.rb +27 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/nonterminal.rb +13 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/optional.rb +19 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/parenthesized_expression.rb +9 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/parsing_expression.rb +146 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/parsing_rule.rb +55 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/predicate.rb +45 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/repetition.rb +55 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/sequence.rb +68 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/terminal.rb +20 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/transient_prefix.rb +9 -0
- data/lib/vendor/treetop/lib/treetop/compiler/node_classes/treetop_file.rb +9 -0
- data/lib/vendor/treetop/lib/treetop/compiler/ruby_builder.rb +113 -0
- data/lib/vendor/treetop/lib/treetop/ruby_extensions.rb +2 -0
- data/lib/vendor/treetop/lib/treetop/ruby_extensions/string.rb +42 -0
- data/lib/vendor/treetop/lib/treetop/runtime.rb +5 -0
- data/lib/vendor/treetop/lib/treetop/runtime/compiled_parser.rb +109 -0
- data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list.rb +4 -0
- data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list/head_node.rb +15 -0
- data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list/interval_skip_list.rb +200 -0
- data/lib/vendor/treetop/lib/treetop/runtime/interval_skip_list/node.rb +164 -0
- data/lib/vendor/treetop/lib/treetop/runtime/syntax_node.rb +90 -0
- data/lib/vendor/treetop/lib/treetop/runtime/terminal_parse_failure.rb +16 -0
- data/lib/vendor/treetop/lib/treetop/runtime/terminal_syntax_node.rb +17 -0
- data/lib/vendor/treetop/lib/treetop/version.rb +9 -0
- data/lib/vendor/treetop/spec/compiler/and_predicate_spec.rb +36 -0
- data/lib/vendor/treetop/spec/compiler/anything_symbol_spec.rb +44 -0
- data/lib/vendor/treetop/spec/compiler/character_class_spec.rb +247 -0
- data/lib/vendor/treetop/spec/compiler/choice_spec.rb +80 -0
- data/lib/vendor/treetop/spec/compiler/circular_compilation_spec.rb +28 -0
- data/lib/vendor/treetop/spec/compiler/failure_propagation_functional_spec.rb +21 -0
- data/lib/vendor/treetop/spec/compiler/grammar_compiler_spec.rb +84 -0
- data/lib/vendor/treetop/spec/compiler/grammar_spec.rb +41 -0
- data/lib/vendor/treetop/spec/compiler/nonterminal_symbol_spec.rb +40 -0
- data/lib/vendor/treetop/spec/compiler/not_predicate_spec.rb +38 -0
- data/lib/vendor/treetop/spec/compiler/one_or_more_spec.rb +35 -0
- data/lib/vendor/treetop/spec/compiler/optional_spec.rb +37 -0
- data/lib/vendor/treetop/spec/compiler/parenthesized_expression_spec.rb +19 -0
- data/lib/vendor/treetop/spec/compiler/parsing_rule_spec.rb +32 -0
- data/lib/vendor/treetop/spec/compiler/sequence_spec.rb +115 -0
- data/lib/vendor/treetop/spec/compiler/terminal_spec.rb +81 -0
- data/lib/vendor/treetop/spec/compiler/terminal_symbol_spec.rb +37 -0
- data/lib/vendor/treetop/spec/compiler/test_grammar.treetop +7 -0
- data/lib/vendor/treetop/spec/compiler/test_grammar.tt +7 -0
- data/lib/vendor/treetop/spec/compiler/test_grammar_do.treetop +7 -0
- data/lib/vendor/treetop/spec/compiler/zero_or_more_spec.rb +56 -0
- data/lib/vendor/treetop/spec/composition/a.treetop +11 -0
- data/lib/vendor/treetop/spec/composition/b.treetop +11 -0
- data/lib/vendor/treetop/spec/composition/c.treetop +10 -0
- data/lib/vendor/treetop/spec/composition/d.treetop +10 -0
- data/lib/vendor/treetop/spec/composition/f.treetop +17 -0
- data/lib/vendor/treetop/spec/composition/grammar_composition_spec.rb +40 -0
- data/lib/vendor/treetop/spec/composition/subfolder/e_includes_c.treetop +15 -0
- data/lib/vendor/treetop/spec/ruby_extensions/string_spec.rb +32 -0
- data/lib/vendor/treetop/spec/runtime/compiled_parser_spec.rb +101 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/delete_spec.rb +147 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/expire_range_spec.rb +349 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/insert_and_delete_node.rb +385 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/insert_spec.rb +660 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/interval_skip_list_spec.graffle +6175 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/interval_skip_list_spec.rb +58 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/palindromic_fixture.rb +23 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/palindromic_fixture_spec.rb +164 -0
- data/lib/vendor/treetop/spec/runtime/interval_skip_list/spec_helper.rb +84 -0
- data/lib/vendor/treetop/spec/runtime/syntax_node_spec.rb +68 -0
- data/lib/vendor/treetop/spec/spec_helper.rb +106 -0
- data/lib/vendor/treetop/spec/spec_suite.rb +4 -0
- data/lib/vendor/treetop/treetop.gemspec +17 -0
- data/spec/command_spec.rb +2 -6
- data/spec/css/accessors-1.0.css +18 -0
- data/spec/css/big-1.0.css +3768 -0
- data/spec/css/comments-1.0.css +9 -0
- data/spec/css/css-1.0.css +40 -0
- data/spec/css/functions-1.0.css +6 -0
- data/spec/css/import-1.0.css +11 -0
- data/spec/css/mixins-1.0.css +28 -0
- data/spec/css/operations-1.0.css +28 -0
- data/spec/css/rulesets-1.0.css +17 -0
- data/spec/css/scope-1.0.css +14 -0
- data/spec/css/strings-1.0.css +12 -0
- data/spec/css/variables-1.0.css +6 -0
- data/spec/css/whitespace-1.0.css +9 -0
- data/spec/engine_spec.rb +66 -18
- data/spec/less/accessors-1.0.less +20 -0
- data/spec/less/big-1.0.less +4810 -0
- data/spec/less/colors-1.0.less +0 -0
- data/spec/less/comments-1.0.less +46 -0
- data/spec/less/css-1.0.less +84 -0
- data/spec/less/exceptions/mixed-units-error.less +3 -0
- data/spec/less/exceptions/name-error-1.0.less +3 -0
- data/spec/less/exceptions/syntax-error-1.0.less +3 -0
- data/spec/less/functions-1.0.less +6 -0
- data/spec/less/import-1.0.less +7 -0
- data/spec/less/import/import-test-a.less +2 -0
- data/spec/less/import/import-test-b.less +8 -0
- data/spec/less/import/import-test-c.less +5 -0
- data/spec/less/mixins-1.0.less +43 -0
- data/spec/less/operations-1.0.less +39 -0
- data/spec/less/rulesets-1.0.less +30 -0
- data/spec/less/scope-1.0.less +33 -0
- data/spec/less/strings-1.0.less +14 -0
- data/spec/less/variables-1.0.less +18 -0
- data/spec/less/whitespace-1.0.less +21 -0
- data/spec/spec.css +79 -24
- data/spec/spec.less +2 -3
- data/spec/spec_helper.rb +4 -1
- metadata +136 -13
- data/lib/less/tree.rb +0 -82
- data/spec/css/less-0.8.10.css +0 -30
- data/spec/css/less-0.8.11.css +0 -31
- data/spec/css/less-0.8.12.css +0 -28
- data/spec/css/less-0.8.5.css +0 -24
- data/spec/css/less-0.8.6.css +0 -24
- data/spec/css/less-0.8.7.css +0 -24
- data/spec/css/less-0.8.8.css +0 -25
- data/spec/tree_spec.rb +0 -5
File without changes
|
@@ -0,0 +1,46 @@
|
|
1
|
+
/*
|
2
|
+
* Comment Test
|
3
|
+
*
|
4
|
+
* - cloudhead (http://cloudhead.net)
|
5
|
+
*
|
6
|
+
*/
|
7
|
+
|
8
|
+
////////////////
|
9
|
+
@var: "content";
|
10
|
+
////////////////
|
11
|
+
|
12
|
+
/* Colors
|
13
|
+
* ------
|
14
|
+
* #EDF8FC (background blue)
|
15
|
+
* #166C89 (darkest blue)
|
16
|
+
*
|
17
|
+
* Text:
|
18
|
+
* #333 (standard text) // A comment within a comment!
|
19
|
+
* #1F9EC9 (standard link)
|
20
|
+
*
|
21
|
+
*/
|
22
|
+
|
23
|
+
/* @group Variables
|
24
|
+
------------------- */
|
25
|
+
#comments {
|
26
|
+
/**/ // An empty comment
|
27
|
+
color: red; /* A C-style comment */
|
28
|
+
background-color: orange; // A little comment
|
29
|
+
font-size: 12px;
|
30
|
+
|
31
|
+
/* lost comment */ content: @var;
|
32
|
+
|
33
|
+
border: 1px solid black;
|
34
|
+
|
35
|
+
// padding & margin //
|
36
|
+
padding: 0;
|
37
|
+
margin: 2em;
|
38
|
+
} //
|
39
|
+
|
40
|
+
/* commented out
|
41
|
+
#more-comments {
|
42
|
+
color: grey;
|
43
|
+
}
|
44
|
+
*/
|
45
|
+
|
46
|
+
//
|
@@ -0,0 +1,84 @@
|
|
1
|
+
/*
|
2
|
+
|
3
|
+
a CSS File
|
4
|
+
|
5
|
+
*/
|
6
|
+
|
7
|
+
div { color: black; }
|
8
|
+
div { width: 99%; }
|
9
|
+
|
10
|
+
* {
|
11
|
+
min-width: 45em;
|
12
|
+
}
|
13
|
+
|
14
|
+
h1, h2 > a > p, h3 {
|
15
|
+
color: none;
|
16
|
+
}
|
17
|
+
|
18
|
+
div.class {
|
19
|
+
color: blue;
|
20
|
+
}
|
21
|
+
|
22
|
+
div#id {
|
23
|
+
color: green;
|
24
|
+
}
|
25
|
+
|
26
|
+
.one.two.three {
|
27
|
+
color: grey;
|
28
|
+
}
|
29
|
+
|
30
|
+
@media print {
|
31
|
+
font-size: 3em;
|
32
|
+
}
|
33
|
+
|
34
|
+
@media screen {
|
35
|
+
font-size: 10px;
|
36
|
+
}
|
37
|
+
|
38
|
+
@font-face {
|
39
|
+
font-family: 'Garamond Pro';
|
40
|
+
src: url("/fonts/garamond-pro.ttf");
|
41
|
+
}
|
42
|
+
|
43
|
+
a:hover, a:link {
|
44
|
+
color: #999;
|
45
|
+
}
|
46
|
+
|
47
|
+
p, p:first-child {
|
48
|
+
text-transform: none;
|
49
|
+
}
|
50
|
+
|
51
|
+
q:lang(no) {
|
52
|
+
quotes: none;
|
53
|
+
}
|
54
|
+
|
55
|
+
p + h1 {
|
56
|
+
font-size: 2.2em;
|
57
|
+
}
|
58
|
+
|
59
|
+
input[type="text"] {
|
60
|
+
font-weight: normal;
|
61
|
+
}
|
62
|
+
|
63
|
+
#shorthands {
|
64
|
+
border: 1px solid #000;
|
65
|
+
font: 12px/16px Arial;
|
66
|
+
margin: 1px 0;
|
67
|
+
padding: 0 auto;
|
68
|
+
background: url("http://www.lesscss.org/spec.html") no-repeat 0 4px;
|
69
|
+
}
|
70
|
+
|
71
|
+
#more-shorthands {
|
72
|
+
margin: 0;
|
73
|
+
padding: 1px 0 2px 0;
|
74
|
+
font: normal small/20px 'Trebuchet MS', Verdana, sans-serif;
|
75
|
+
}
|
76
|
+
|
77
|
+
.misc {
|
78
|
+
-moz-border-radius: 2px;
|
79
|
+
width: .1em;
|
80
|
+
color: red !important;
|
81
|
+
background-image: url(images/image.jpg);
|
82
|
+
margin: ;
|
83
|
+
}
|
84
|
+
|
@@ -0,0 +1,43 @@
|
|
1
|
+
.mixin { border: 1px solid black; }
|
2
|
+
.mixout { border-color: orange; }
|
3
|
+
.borders { border-style: dashed; }
|
4
|
+
|
5
|
+
#namespace {
|
6
|
+
.borders {
|
7
|
+
border-style: dotted;
|
8
|
+
}
|
9
|
+
.biohazard {
|
10
|
+
content: "death";
|
11
|
+
.man {
|
12
|
+
color: transparent;
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
16
|
+
#theme > .mixin {
|
17
|
+
background-color: grey;
|
18
|
+
}
|
19
|
+
#container {
|
20
|
+
color: black;
|
21
|
+
.mixin, .mixout;
|
22
|
+
#theme > .mixin;
|
23
|
+
}
|
24
|
+
|
25
|
+
#header {
|
26
|
+
.milk {
|
27
|
+
color: white;
|
28
|
+
.mixin, #theme > .mixin;
|
29
|
+
}
|
30
|
+
#cookie {
|
31
|
+
.chips {
|
32
|
+
#namespace .borders;
|
33
|
+
.calories {
|
34
|
+
#container;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
.borders;
|
38
|
+
}
|
39
|
+
}
|
40
|
+
.secure-zone { #namespace .biohazard .man; }
|
41
|
+
.direct {
|
42
|
+
#namespace > .borders;
|
43
|
+
}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
#operations {
|
2
|
+
color: #110000 + #000011 + #001100; // #111111
|
3
|
+
height: 10px / 2px + 6px - 1px * 2; // 9px
|
4
|
+
width: 2 * 4 - 5em; // 3em
|
5
|
+
.spacing {
|
6
|
+
height: 10px / 2px+6px-1px*2;
|
7
|
+
width: 2 * 4-5em;
|
8
|
+
}
|
9
|
+
}
|
10
|
+
|
11
|
+
@x: 4;
|
12
|
+
@y: 12em;
|
13
|
+
|
14
|
+
.with-variables {
|
15
|
+
height: @x + @y; // 16em
|
16
|
+
width: 12 + @y; // 24em
|
17
|
+
size: 5cm - @x; // 1cm
|
18
|
+
}
|
19
|
+
|
20
|
+
@z: -2;
|
21
|
+
|
22
|
+
.negative {
|
23
|
+
height: 2px + @z; // 0px
|
24
|
+
width: 2px - @z; // 4px
|
25
|
+
}
|
26
|
+
|
27
|
+
.shorthands {
|
28
|
+
padding: -1px 2px 0 -4px; //
|
29
|
+
}
|
30
|
+
|
31
|
+
.colors {
|
32
|
+
color: #123; // #123123
|
33
|
+
border-color: #234 + #111111; // #345345
|
34
|
+
background-color: #222222 - #fff; // #000000
|
35
|
+
.other {
|
36
|
+
color: 2 * #111; // #222222
|
37
|
+
border-color: #333333 / 3 + #111; // #222222
|
38
|
+
}
|
39
|
+
}
|
@@ -0,0 +1,30 @@
|
|
1
|
+
#first > .one {
|
2
|
+
> #second .two > #deux {
|
3
|
+
width: 50%;
|
4
|
+
#third {
|
5
|
+
:focus {
|
6
|
+
color: black;
|
7
|
+
#fifth {
|
8
|
+
> #sixth {
|
9
|
+
.seventh #eighth {
|
10
|
+
+ #ninth {
|
11
|
+
color: purple;
|
12
|
+
}
|
13
|
+
}
|
14
|
+
}
|
15
|
+
}
|
16
|
+
}
|
17
|
+
height: 100%;
|
18
|
+
}
|
19
|
+
#fourth, #five, #six {
|
20
|
+
color: #110000;
|
21
|
+
.seven, .eight > #nine {
|
22
|
+
border: 1px solid black;
|
23
|
+
}
|
24
|
+
#ten {
|
25
|
+
color: red;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
font-size: 2em;
|
30
|
+
}
|
@@ -0,0 +1,33 @@
|
|
1
|
+
@x: blue;
|
2
|
+
@z: transparent;
|
3
|
+
@mix: none;
|
4
|
+
|
5
|
+
.mixin {
|
6
|
+
@mix: #989;
|
7
|
+
}
|
8
|
+
|
9
|
+
.tiny-scope {
|
10
|
+
color: @mix; // none
|
11
|
+
.mixin;
|
12
|
+
border-color: @mix; // #989
|
13
|
+
}
|
14
|
+
|
15
|
+
.scope1 {
|
16
|
+
@y: orange;
|
17
|
+
@z: black;
|
18
|
+
color: @x; // blue
|
19
|
+
border-color: @z; // black
|
20
|
+
.hidden {
|
21
|
+
@x: #131313;
|
22
|
+
}
|
23
|
+
.scope2 {
|
24
|
+
@y: red;
|
25
|
+
color: @x; // blue
|
26
|
+
.scope3 {
|
27
|
+
@local: white;
|
28
|
+
color: @y; // red
|
29
|
+
border-color: @z; // black
|
30
|
+
background-color: @local; // white
|
31
|
+
}
|
32
|
+
}
|
33
|
+
}
|
@@ -0,0 +1,14 @@
|
|
1
|
+
#strings {
|
2
|
+
background-image: url("http://son-of-a-banana.com");
|
3
|
+
quotes: "~" "~";
|
4
|
+
content: "#*%:&^,)!.(~*})";
|
5
|
+
empty: "";
|
6
|
+
}
|
7
|
+
#comments {
|
8
|
+
content: "/* hello */ // not-so-secret";
|
9
|
+
}
|
10
|
+
#single-quote {
|
11
|
+
quotes: "'" "'";
|
12
|
+
content: '""#!&""';
|
13
|
+
empty: '';
|
14
|
+
}
|
@@ -0,0 +1,18 @@
|
|
1
|
+
@a: 2;
|
2
|
+
@x: @a * @a;
|
3
|
+
@y: @x + 1;
|
4
|
+
@z: @x * 2 + @y;
|
5
|
+
|
6
|
+
.variables {
|
7
|
+
width: @z + 1cm; // 14cm
|
8
|
+
}
|
9
|
+
|
10
|
+
@b: @a * 10;
|
11
|
+
@c: #888;
|
12
|
+
@fonts: "Trebuchet MS", Verdana, sans-serif;
|
13
|
+
|
14
|
+
.variables {
|
15
|
+
height: @b + @x + 0px; // 24px
|
16
|
+
color: @c;
|
17
|
+
font-family: @fonts;
|
18
|
+
}
|
@@ -0,0 +1,21 @@
|
|
1
|
+
.whitespace
|
2
|
+
{ color: white; }
|
3
|
+
.whitespace
|
4
|
+
{
|
5
|
+
color: white;
|
6
|
+
}
|
7
|
+
.whitespace
|
8
|
+
{ color: white; }
|
9
|
+
|
10
|
+
.whitespace{color:white;}
|
11
|
+
.whitespace { color : white ; }
|
12
|
+
|
13
|
+
.white,
|
14
|
+
.space,
|
15
|
+
.mania
|
16
|
+
{ color: white; }
|
17
|
+
|
18
|
+
.no-semi-column { color: white }
|
19
|
+
.empty {
|
20
|
+
|
21
|
+
}
|
data/spec/spec.css
CHANGED
@@ -1,29 +1,84 @@
|
|
1
|
-
.theme {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
.
|
6
|
-
.
|
7
|
-
|
8
|
-
|
1
|
+
.theme {
|
2
|
+
color: #cccccc;
|
3
|
+
background-color: #aaaaaa;
|
4
|
+
}
|
5
|
+
.extra .dark-borders { border-color: #444444; }
|
6
|
+
.extra .light-borders { border-color: #888888; }
|
7
|
+
body { font-family: sans-serif; }
|
8
|
+
div > p a { font-family: sans-serif; }
|
9
|
+
h2 a > span:first-child { font-family: sans-serif; }
|
10
|
+
.root a {
|
11
|
+
color: blue;
|
12
|
+
display: none;
|
13
|
+
}
|
14
|
+
.root a:hover { color: orange; }
|
15
|
+
.root a:focus { color: orange; }
|
16
|
+
.root .first { color: green; }
|
17
|
+
.root .first .second .third {
|
18
|
+
background-color: blue;
|
19
|
+
font-size: 8px;
|
20
|
+
color: red;
|
21
|
+
border-color: red;
|
22
|
+
}
|
9
23
|
.root:hover a { display: block; }
|
10
|
-
body {
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
24
|
+
body {
|
25
|
+
font-size: 10px;
|
26
|
+
font-family: "Lucida Grande", 'Helvetica', Verdana, sans-serif;
|
27
|
+
margin: -5px 0 5px 10px;
|
28
|
+
border: solid 1px #000000;
|
29
|
+
text-shadow: #333333 -1px 1px 2px;
|
30
|
+
-moz-border-radius: 3px;
|
31
|
+
color: #cccccc;
|
32
|
+
background-color: #aaaaaa;
|
33
|
+
}
|
34
|
+
#operations {
|
35
|
+
font: 12px/16px;
|
36
|
+
width: 110px;
|
37
|
+
font-size: 66;
|
38
|
+
color: #eeeeee;
|
39
|
+
colorb: #333333;
|
40
|
+
colorc: #777777;
|
41
|
+
}
|
42
|
+
#operations div { width: 80px; }
|
43
|
+
td { border-width: 88px; }
|
44
|
+
tr { border-width: 88px; }
|
45
|
+
table { border-width: 88px; }
|
46
|
+
blockquote:before { content: ""; }
|
47
|
+
blockquote:after { content: ""; }
|
48
|
+
q:before { content: ""; }
|
49
|
+
q:after { content: ""; }
|
50
|
+
a:link { color: brown; }
|
51
|
+
a:hover { color: brown; }
|
52
|
+
div > a { color: grey; }
|
53
|
+
a span { color: grey; }
|
17
54
|
ul li:first-child { border-top: none; }
|
18
|
-
ul li:first-child
|
55
|
+
ul li:first-child { background-color: #333333; }
|
56
|
+
ul li:last-child { background-color: #333333; }
|
19
57
|
.p:first-letter { color: red; }
|
20
|
-
h5:focus {
|
21
|
-
|
58
|
+
h5:focus {
|
59
|
+
outline: 0;
|
60
|
+
content: "*}#f~ ";
|
61
|
+
}
|
62
|
+
q:lang(no) { quotes: "~" "~"; }
|
22
63
|
blockquote:before { color: red; }
|
64
|
+
div { width: 9px; }
|
23
65
|
div { color: purple; }
|
24
|
-
.duplicate {
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
.
|
29
|
-
|
66
|
+
.duplicate {
|
67
|
+
width: 9px;
|
68
|
+
height: 11px;
|
69
|
+
}
|
70
|
+
.duplicate {
|
71
|
+
width: 11px;
|
72
|
+
color: blue;
|
73
|
+
}
|
74
|
+
.loading { background: "http://"; }
|
75
|
+
input[type="text"] { background-color: blue; }
|
76
|
+
.transparent_box {
|
77
|
+
background-color: #ffffff;
|
78
|
+
opacity: 0.6;
|
79
|
+
}
|
80
|
+
.space {
|
81
|
+
color: purple;
|
82
|
+
font-color: yellow;
|
83
|
+
}
|
84
|
+
.no-semi-column { color: orange; }
|