Move web application into /web.

This commit is contained in:
2024-08-04 20:48:32 -05:00
parent 338eab1c96
commit 111be977c6
138 changed files with 0 additions and 0 deletions

13
web/www/css/rounded.scss Normal file
View File

@ -0,0 +1,13 @@
/* _rounded.scss */
@mixin rounded($radius: 10px) {
-moz-border-radius: $radius;
-webkit-border-radius: $radius;
border-radius: $radius;
}
@mixin rounded2($side1, $side2, $radius: 10px) {
-moz-border-radius-#{$side1}#{$side2}: $radius;
-webkit-border-#{$side1}-#{$side2}-radius: $radius;
border-#{$side1}-#{$side2}-radius: $radius;
}