font dot created succesfuly

This commit is contained in:
asus
2023-11-17 07:24:03 +01:00
parent e507e45c6b
commit 484c22b7d6
23 changed files with 19747 additions and 304 deletions

44
styles/global.css Normal file
View File

@@ -0,0 +1,44 @@
.left {
display: flex;
margin-left: 0px;
}
[class*="child-"] {
display: flex;
border: 1px solid blue;
}
[class*="child-"] > *, [class*="child-"][class*="-center"] > * {
margin: auto;
}
[class*="child-"][class*="-left"] > * {
margin-left: 0px;
}
[class*="child-"][class*="-right"] > * {
margin-right: 0px;
}
[class*="child-"][class*="-top"] > * {
margin-top: 0px;
}
[class*="child-"][class*="-bottom"] > * {
margin-bottom: 0px;
}
[class*="child-"][class*="-compact"] > * {
margin-bottom: 0px;
}
[class*="child-"][class*="-large"] > * {
margin-top: 0px;
margin-bottom: 0px;
}
.horizontal {
display: flex;
flex-direction: row;
}
.vertical {
display: flex;
flex-direction: column;
}