mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
Structure of the pomodoros counter done
This commit is contained in:
@@ -33,6 +33,8 @@
|
||||
@include normalizeBody;
|
||||
|
||||
color: $second-color;
|
||||
user-select: none;
|
||||
|
||||
}
|
||||
|
||||
h3 {
|
||||
|
||||
45
public/sass_styles/_pomodoro-counter.scss
Normal file
45
public/sass_styles/_pomodoro-counter.scss
Normal file
@@ -0,0 +1,45 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -49,6 +49,7 @@ $lightest-color: #D7FBE8;
|
||||
@import 'goDownArrow';
|
||||
@import 'aboutThis';
|
||||
@import 'historyButton';
|
||||
@import 'pomodoro-counter';
|
||||
|
||||
html, body {
|
||||
margin: 0;
|
||||
|
||||
Reference in New Issue
Block a user