mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-06 17:25:55 -05:00
23 lines
395 B
CSS
23 lines
395 B
CSS
|
/**
|
||
|
* Multi-line comment
|
||
|
*/
|
||
|
|
||
|
.selector-1,
|
||
|
.selector-2,
|
||
|
.selector-3[type="text"] {
|
||
|
background: linear-gradient(#fff, rgba(0, 0, 0, 0.8));
|
||
|
box-sizing: border-box;
|
||
|
display: block;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.selector-a,
|
||
|
.selector-b:not(:first-child) {
|
||
|
padding: 10px !important;
|
||
|
top: calc(calc(1em * 2) / 3);
|
||
|
}
|
||
|
|
||
|
.selector-x { width: 10%; }
|
||
|
.selector-y { width: 20%; }
|
||
|
.selector-z { width: 30%; }
|