feat: making a draft, a peer-reviewed first page

This commit is contained in:
Ignat Karelov
2026-04-23 15:09:43 +03:00
parent 4cb4b9fbf3
commit acb1eb5ec5
13 changed files with 6095 additions and 11 deletions

14
assets/scss/_mixins.scss Normal file
View File

@@ -0,0 +1,14 @@
@use "vars" as *;
@mixin container {
width: 100%;
max-width: $container;
margin: 0 auto;
}
@mixin card {
background: rgba(18, 18, 18, 0.4);
border: 1px solid $color-border;
border-radius: $radius-md;
box-shadow: $shadow-card;
}