2014-10-20 12:36:34 -04:00
|
|
|
/* asdfasdf */
|
|
|
|
|
2013-10-04 17:45:37 -04:00
|
|
|
.xxx
|
|
|
|
{
|
|
|
|
}
|
2013-10-07 11:40:24 -04:00
|
|
|
|
2014-10-20 12:36:34 -04:00
|
|
|
article[role="main"] {
|
|
|
|
width: 60%;
|
|
|
|
}
|
|
|
|
|
2015-04-09 10:51:23 -04:00
|
|
|
a, b:hover, c {
|
2016-02-01 21:38:25 +01:00
|
|
|
color: black !important;
|
2015-04-09 10:51:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
a, b:hover { /* bug:20282 */
|
|
|
|
c {
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
color: black;
|
|
|
|
}
|
|
|
|
|
|
|
|
a.b:c,d.e:f,g[h]:i,j[k]:l,.m.n:o,.p.q:r,.s[t]:u,.v[w]:x { /* bug:20282 */
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
2014-10-20 12:36:34 -04:00
|
|
|
/* asdfasdf */
|
|
|
|
@foo x2 {
|
|
|
|
bla:toto;
|
|
|
|
}
|
2013-10-07 11:40:24 -04:00
|
|
|
.x2
|
|
|
|
{
|
2015-08-21 14:13:05 -04:00
|
|
|
/* foo: bar; */ foo2: bar2;
|
2015-10-29 10:36:52 -04:00
|
|
|
bar1: url("http://toto/titi");
|
|
|
|
bar2: url('http://toto/titi');
|
|
|
|
bar3: url(http://toto/titi);
|
2013-10-07 11:40:24 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
div.x3
|
|
|
|
{
|
|
|
|
}
|
2015-08-28 19:36:10 +02:00
|
|
|
|
|
|
|
article:hover
|
|
|
|
{
|
|
|
|
color: black;
|
|
|
|
}
|
2017-02-02 20:05:32 +01:00
|
|
|
|
|
|
|
/* bug:13425 */
|
|
|
|
div:first-child,
|
|
|
|
div:last-child,
|
|
|
|
div[disabled],
|
|
|
|
div::before {
|
|
|
|
font: 15px "Helvetica Neue",
|
|
|
|
Helvetica,
|
|
|
|
Arial,
|
|
|
|
"Nimbus Sans L",
|
|
|
|
sans-serif;
|
|
|
|
font: 15px "Helvetica Neue", Helvetica, Arial,
|
|
|
|
"Nimbus Sans L", sans-serif;
|
2018-01-27 18:03:49 +01:00
|
|
|
background: no-repeat right
|
|
|
|
5px center;
|
2017-02-02 20:05:32 +01:00
|
|
|
transform: matrix(1.0, 2.0,
|
|
|
|
3.0, 4.0,
|
|
|
|
5.0, 6.0);
|
|
|
|
transform: matrix(
|
|
|
|
1.0, 2.0,
|
|
|
|
3.0, 4.0,
|
|
|
|
5.0, 6.0
|
|
|
|
);
|
|
|
|
}
|
2017-06-03 13:29:06 +02:00
|
|
|
|
2017-10-13 21:48:12 +02:00
|
|
|
/* Multi-line selector including both a pseudo-class and
|
|
|
|
parenthesis. */
|
|
|
|
.form-group:not(.required) label,
|
|
|
|
.birth-date .row > * {
|
|
|
|
&::after {
|
|
|
|
display: inline;
|
|
|
|
font-weight: normal;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-02 20:05:32 +01:00
|
|
|
@font-face {
|
|
|
|
src: url("Sans-Regular.eot") format("eot"),
|
|
|
|
url("Sans-Regular.woff") format("woff"),
|
|
|
|
url("Sans-Regular.ttf") format("truetype");
|
|
|
|
}
|
2017-06-03 13:29:06 +02:00
|
|
|
|
|
|
|
@font-face {
|
|
|
|
src:
|
|
|
|
url("Sans-Regular.eot") format("eot"),
|
|
|
|
url("Sans-Regular.woff") format("woff");
|
|
|
|
}
|
2017-06-11 17:41:09 +02:00
|
|
|
|
|
|
|
.foo-bar--baz {
|
|
|
|
--foo-variable: 5px;
|
2020-05-10 14:44:26 +02:00
|
|
|
--_variable_with_underscores: #fff;
|
|
|
|
--_variable-starting-with-underscore: none;
|
2017-06-11 17:41:09 +02:00
|
|
|
margin: var(--foo-variable);
|
2020-05-10 14:44:26 +02:00
|
|
|
color: var(--_variable_with_underscores);
|
|
|
|
display: var(--_variable-starting-with-underscore);
|
2017-06-11 17:41:09 +02:00
|
|
|
}
|