Initial commit

This commit is contained in:
Crimson-Hawk
2024-03-05 16:42:40 +08:00
commit f1e4595ebf
39576 changed files with 7006612 additions and 0 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);
}
}
}