first commit

This commit is contained in:
2025-04-06 20:33:29 +03:00
commit f977d6b3d4
76 changed files with 16809 additions and 0 deletions

39
src/css/app.scss Normal file
View File

@@ -0,0 +1,39 @@
// app global css in SCSS form
.text-brand {
color: $green-14 !important;
}
.bg-brand {
background: $green-14 !important;
}
$base-width: 100;
@while $base-width > 0 {
.w#{$base-width} { width: #{$base-width}+'%'; }
$base-width: $base-width - 10;
}
$base-height: 100;
@while $base-height > 0 {
.h#{$base-height} { height: #{$base-height}+'%'; }
$base-height: $base-height - 10;
}
:root {
--body-width: 600px;
--top-raduis: 12px;
}
body {
overflow: hidden !important;
}
.projects-header {
background-color: #eee;
}
.top-rounded-card {
border-top-left-radius: var(--top-raduis);
border-top-right-radius: var(--top-raduis);
}