first commit
This commit is contained in:
39
src/css/app.scss
Normal file
39
src/css/app.scss
Normal 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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user