35 lines
342 B
TypeScript
35 lines
342 B
TypeScript
import { Sheet } from "./main.ts";
|
|
|
|
/*
|
|
|
|
"5px"
|
|
Unit(5).px
|
|
[5,"px"]
|
|
px(5)
|
|
Unit.px(5)
|
|
|
|
*/
|
|
|
|
export default Sheet(
|
|
{
|
|
|
|
SpecialLink(css)
|
|
{
|
|
css
|
|
.Pos.Abs
|
|
("hover","after")
|
|
.Pos.Rel
|
|
.L("3rem")
|
|
[512]
|
|
.L("100px")
|
|
},
|
|
|
|
Profile()
|
|
{
|
|
this
|
|
.Dis.Block
|
|
.Pad("5px", "6px")
|
|
.Mar("0px", "auto")
|
|
}
|
|
|
|
}); |