mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
50 lines
931 B
SCSS
50 lines
931 B
SCSS
|
|
.header-main-page {
|
|
background-color: $main-color;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
|
|
height: 17vh;
|
|
|
|
h1 {
|
|
color: #ffffff;
|
|
|
|
font-size: 7vh;
|
|
@include titleFont();
|
|
@include normalizeTitle();
|
|
}
|
|
|
|
h3 {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
|
|
font-size: 2vh;
|
|
@include titleFont();
|
|
@include normalizeTitle();
|
|
|
|
.selectable {
|
|
user-select: all;
|
|
|
|
|
|
a,
|
|
a:link,
|
|
a:visited,
|
|
a:hover,
|
|
a:active {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
font-weight: inherit;
|
|
|
|
}
|
|
|
|
a {
|
|
&::selection {
|
|
background-color:#ffe83d;
|
|
color: #000000
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |