Css element selector
1 css2 < body3 background-color #dedede4 color 000
/*
artifact generator: /app/node_modules/@wizzi/plugin.css/lib/artifacts/css/document/gen/main.js
package: @wizzi/[email protected]
primary source IttfDocument: json:/index.css.ittf
utc time: Tue, 06 May 2025 05:40:00 GMT
*/
body {
background-color: #dedede;
color: 000;
}
Css class selector
1 css2 . page3 background-color #dedede4 color 000
/*
artifact generator: /app/node_modules/@wizzi/plugin.css/lib/artifacts/css/document/gen/main.js
package: @wizzi/[email protected]
primary source IttfDocument: json:/index.css.ittf
utc time: Tue, 06 May 2025 05:40:00 GMT
*/
.page {
background-color: #dedede;
color: 000;
}
Css id selector
1 css2 # page3 background-color #dedede4 color 000
/*
artifact generator: /app/node_modules/@wizzi/plugin.css/lib/artifacts/css/document/gen/main.js
package: @wizzi/[email protected]
primary source IttfDocument: json:/index.css.ittf
utc time: Tue, 06 May 2025 05:40:00 GMT
*/
#page {
background-color: #dedede;
color: 000;
}
script tag with inclusion of a svg model
1 css2 < body3 background-image4 svg5 width 100%6 height 100%7 view-box 0 0 1600 9008 path9 fill #A0E2DB10 d M0 504 0 899 1600 899 1600 120z11 path12 fill #CBF2F313 d M1600 567 1600 899 0 899 0 165z14 path15 fill #719D7116 d M0 680 0 899 1600 899 1600 300z17 path18 fill # 37EB67E19 d M1600 719 1600 899 0 899 0 353z20 path21 fill #004D6622 d M0 788 0 899 1600 899 1600 625z
/*
artifact generator: /app/node_modules/@wizzi/plugin.css/lib/artifacts/css/document/gen/main.js
package: @wizzi/[email protected]
primary source IttfDocument: json:/index.css.ittf
utc time: Tue, 06 May 2025 05:40:00 GMT
*/
body {
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 900'%3E%3Cpath fill='%23A0E2DB' d='M0 504 0 899 1600 899 1600 120z'%3E%3C/path%3E%3Cpath fill='%23CBF2F3' d='M1600 567 1600 899 0 899 0 165z'%3E%3C/path%3E%3Cpath fill='%23719D71' d='M0 680 0 899 1600 899 1600 300z'%3E%3C/path%3E%3Cpath fill='%23 37EB67E' d='M1600 719 1600 899 0 899 0 353z'%3E%3C/path%3E%3Cpath fill='%23004D66' d='M0 788 0 899 1600 899 1600 625z'%3E%3C/path%3E%3C/svg%3E");
}
scss like class
1 css2 . gamma3 color #0004 . delta5 padding 1px6 & :hover7 + &.active8 color #ccc9 media (max-width: 568px)10 left 10px
/*
artifact generator: /app/node_modules/@wizzi/plugin.css/lib/artifacts/css/document/gen/main.js
package: @wizzi/[email protected]
primary source IttfDocument: json:/index.css.ittf
utc time: Tue, 06 May 2025 05:40:00 GMT
*/
.gamma {
color: #000;
}
.gamma .delta {
padding: 1px;
}
.gamma .delta:hover, .gamma .delta.active {
color: #ccc;
}
@media (max-width: 568px) {
.gamma .delta:hover, .gamma .delta.active {
left: 10px;
}
}