mirror of
https://github.com/ruisaraiva19/favycon.git
synced 2026-09-12 19:51:07 +05:00
* improvement(styles): update hovers and backgrounds * feat(about-us): add project link and contact email * chore(colors): update colors * chore(storybook): add Chromatic * chore: update repo info * chore(deps): upgrade dependencies * refactor: update colors and repo info * chore: remove chromatic * refactor(deps): upgrade react-dropzone to v11 * feat: update app icon * chore: update background image * chore: dark mode favicon
116 lines
1.5 KiB
SCSS
116 lines
1.5 KiB
SCSS
@import '../../styles/variables.scss';
|
|
|
|
.root {
|
|
font-family: Manrope, Arial, Helvetica Neue, Helvetica, sans-serif;
|
|
}
|
|
|
|
.h1 {
|
|
font-size: $font-size-h1;
|
|
line-height: $line-height-h1;
|
|
}
|
|
|
|
.smallBody {
|
|
font-size: $font-size-small-body;
|
|
line-height: $line-height-small-body;
|
|
}
|
|
|
|
.regularBody {
|
|
font-size: $font-size-regular-body;
|
|
line-height: $line-height-regular-body;
|
|
}
|
|
|
|
.mediumBody {
|
|
font-size: $font-size-medium-body;
|
|
line-height: $line-height-medium-body;
|
|
}
|
|
|
|
.largeBody {
|
|
font-size: $font-size-large-body;
|
|
line-height: $line-height-large-body;
|
|
}
|
|
|
|
.footer {
|
|
font-size: $font-size-footer;
|
|
line-height: $line-height-footer;
|
|
|
|
a {
|
|
color: inherit;
|
|
|
|
&:focus,
|
|
&:active,
|
|
&:hover {
|
|
color: inherit;
|
|
}
|
|
}
|
|
}
|
|
|
|
.superscript {
|
|
font-size: $font-size-superscript;
|
|
line-height: $line-height-superscript;
|
|
}
|
|
|
|
.title {
|
|
font-size: $font-size-title;
|
|
line-height: $line-height-title;
|
|
}
|
|
|
|
.largeTitle {
|
|
font-size: $font-size-large-title;
|
|
line-height: $line-height-large-title;
|
|
}
|
|
|
|
.regular {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.medium {
|
|
font-weight: 500;
|
|
}
|
|
|
|
.semiBold {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.bold {
|
|
font-weight: 700;
|
|
}
|
|
|
|
.black {
|
|
color: $black;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
:global(.dark-mode) .black {
|
|
color: $off-white;
|
|
}
|
|
|
|
.gray {
|
|
color: $grey;
|
|
}
|
|
|
|
:global(.dark-mode) .gray {
|
|
color: $grey-dark;
|
|
}
|
|
|
|
.white {
|
|
color: $white;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
:global(.dark-mode) .white {
|
|
color: $black;
|
|
}
|
|
|
|
.green {
|
|
color: $green;
|
|
}
|
|
|
|
.muted {
|
|
color: $grey;
|
|
transition: color 0.2s ease;
|
|
}
|
|
|
|
:global(.dark-mode) .muted {
|
|
color: $grey;
|
|
}
|