Files
Pomodoro-Timer-with-Clockif…/public/sass_styles/_pomodoro-counter.scss
2021-10-02 17:31:10 -03:00

71 lines
1.2 KiB
SCSS

.pomodoro-counter {
position: absolute;
top: 29vh;
ul {
li {
display: flex;
@include bodyFont;
list-style-type: none;
margin-top: 2vh;
font-size: 15pt;
color: #00000070;
.separator {
user-select: none;
margin: 0px 0.5vw;
}
.quantity {
@include titleFont;
user-select: none;
display: flex;
justify-content: center;
align-items: center;
height: 30px;
width: 30px;
border-radius: 100%;
color: $second-color;
background-color: $light-color;
}
}
}
}
@media (max-width: 991.98px) {
.pomodoro-counter {
position: initial;
padding-bottom: 5vh;
}
}
.pomodoro-counter.dark-mode-component {
ul {
li {
color: #ffffff;
.quantity {
color: $lightest-color-dark;
background: $second-color-dark;
}
}
}
}