early-access version 3088

This commit is contained in:
pineappleEA
2022-11-05 15:35:56 +01:00
parent 4e4fc25ce3
commit b601909c6d
35519 changed files with 5996896 additions and 860 deletions

View File

@@ -0,0 +1,3 @@
@import "foobar";
body { color: red; }

View File

@@ -0,0 +1,3 @@
body {
border: { color: red; }
}

View File

@@ -0,0 +1,15 @@
#|
Copyright 2017 Dmitry Arkhipov
Distributed under the Boost Software License, Version 1.0. (See
accompanying file LICENSE.txt or copy at
https://www.bfgroup.xyz/b2/LICENSE.txt)
|#
css stylesheet1 : singleton.scss : <flags>"--precision 1" ;
css stylesheet2 : singleton.sass ;
css stylesheet3 : importing.scss : <include>include ;
css stylesheet4
: singleton.scss
: <sass-style>expanded
<sass-line-numbers>off
;

View File

@@ -0,0 +1,12 @@
body
p
line-height: 1.5em
span
font-weight: 700
a
text-decoration: none
&:hover
text-decoration: underline
font-size: (10px/3)

View File

@@ -0,0 +1,11 @@
body {
p { line-height: 1.5em; }
span { font-weight: 700; }
a {
text-decoration: none;
&:hover {
text-decoration: underline;
font-size: (10px/3);
}
}
}