54 lines
831 B
CSS
Raw Permalink Normal View History

2012-02-26 16:36:13 +00:00
.variables {
width: 14cm;
}
.variables {
height: 24px;
color: #888888;
font-family: "Trebuchet MS", Verdana, sans-serif;
quotes: "~""~";
}
.redefinition {
three: 3;
}
.values {
font-family: 'Trebuchet', 'Trebuchet', 'Trebuchet';
color: #888888 !important;
url: url('Trebuchet');
multi: something 'A', B, C, 'Trebuchet';
}
.variable-names {
name: 'hello';
}
.alpha {
filter: alpha(opacity=42);
}
.lazy-eval {
width: 100%;
}
.scope1 {
color: blue;
border-color: black;
}
2012-02-26 17:04:50 +00:00
.scope1 .scope2 {
2012-02-26 16:36:13 +00:00
color: blue;
}
2012-02-26 17:04:50 +00:00
.scope1 .scope2 .scope3 {
2012-02-26 16:36:13 +00:00
color: red;
border-color: black;
background-color: white;
}
2012-02-26 17:04:50 +00:00
.scope1 .scope2 .scope3 .scope4 {
2012-02-26 16:36:13 +00:00
color: black;
}
2012-03-23 17:04:08 +00:00
.negvar {
padding: -1px;
}
2012-03-23 17:16:40 +00:00
.varpad {
border-left: 1px solid transparent;
border-right: 1px solid transparent;
border-top: 1px solid black;
}
.testname {
width: 12px;
}