Initial commit

This commit is contained in:
2023-09-16 22:11:34 +02:00
parent 2d458f08f3
commit 7972ad66a8
8 changed files with 710 additions and 26 deletions
+31 -2
View File
@@ -2,6 +2,7 @@
html, body {
margin: 0;
font-family: "Roboto", sans-serif;
}
.icon, i:not(.icon) {
@@ -20,6 +21,34 @@ html, body {
-moz-osx-font-smoothing: grayscale;
}
.filled {
.icon.filled, i:not(.icon).filled {
font-variation-settings: "FILL" 1;
}
}
button {
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
cursor: pointer;
padding: 8px 14px 8px 10px;
margin: 0 4px;
border-radius: 4px;
font-weight: 600;
background: #d7eaf3;
color: #0e2c48;
}
button i {
margin-right: 10px;
color: #0e2c48;
padding: 0;
}
button:hover {
background: #e4eff6;
}
button:active {
background: #d0e3f1;
}