first commit
This commit is contained in:
commit
5227b040cb
93 changed files with 385576 additions and 0 deletions
30
assets/css/base.css
Executable file
30
assets/css/base.css
Executable file
|
|
@ -0,0 +1,30 @@
|
|||
*{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-font-smoothing: antialiased;
|
||||
-o-font-smoothing: antialiased;
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-family: var(--font);
|
||||
font-size: var(--fs-normal);
|
||||
line-height: 1.2;
|
||||
color: var(--color-text);
|
||||
/* -webkit-print-color-adjust:exact !important;
|
||||
print-color-adjust:exact !important; */
|
||||
}
|
||||
|
||||
main{
|
||||
min-height: calc(100vh - var(--header-h));
|
||||
margin-top: var(--header-h);
|
||||
/* padding: var(--padding-body); */
|
||||
}
|
||||
|
||||
button{
|
||||
background: none;
|
||||
border: none;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue