mirror of
https://github.com/FranP-code/Pomodoro-Timer-with-Clockify-integration.git
synced 2025-10-12 23:52:30 +00:00
271 lines
5.3 KiB
CSS
271 lines
5.3 KiB
CSS
.header-main-page {
|
|
background-color: #62D2A2;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 17vh;
|
|
}
|
|
.header-main-page h1 {
|
|
color: #ffffff;
|
|
font-size: 7vh;
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
padding: 0;
|
|
user-select: none;
|
|
}
|
|
.header-main-page h3 {
|
|
color: rgba(255, 255, 255, 0.75);
|
|
font-size: 2vh;
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
padding: 0;
|
|
user-select: none;
|
|
}
|
|
.header-main-page h3 .selectable {
|
|
user-select: all;
|
|
}
|
|
.header-main-page h3 .selectable a,
|
|
.header-main-page h3 .selectable a:link,
|
|
.header-main-page h3 .selectable a:visited,
|
|
.header-main-page h3 .selectable a:hover,
|
|
.header-main-page h3 .selectable a:active {
|
|
color: inherit;
|
|
text-decoration: inherit;
|
|
font-weight: inherit;
|
|
}
|
|
.header-main-page h3 .selectable a::selection {
|
|
background-color: #ffe83d;
|
|
color: #000000;
|
|
}
|
|
|
|
.banner-login {
|
|
background-color: #D17262;
|
|
color: white;
|
|
font-family: "Rambla", sans-serif;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
padding: 0px 5vw;
|
|
height: 7vh;
|
|
}
|
|
.banner-login p {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
.banner-login .button-container {
|
|
width: 20vw;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
.banner-login .button-container button {
|
|
background: none;
|
|
border: none;
|
|
width: 8vw;
|
|
font-size: 2.6vh;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
height: 6vh;
|
|
}
|
|
.banner-login .button-container .register {
|
|
border: solid 1px #ffffff;
|
|
border-radius: 24px;
|
|
}
|
|
.banner-login .button-container .login {
|
|
background-color: #00000057;
|
|
border-radius: 24px;
|
|
}
|
|
|
|
.main-pomodoro {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 68vh;
|
|
}
|
|
.main-pomodoro .timer {
|
|
display: flex;
|
|
justify-content: center;
|
|
font-family: "Rambla", sans-serif;
|
|
font-weight: bold;
|
|
font-size: 130pt;
|
|
color: #1FAB89;
|
|
}
|
|
.main-pomodoro .style-display {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
font-family: "Rambla", sans-serif;
|
|
}
|
|
.main-pomodoro .style-display h4 {
|
|
font-size: 24pt;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #1FAB89;
|
|
}
|
|
.main-pomodoro .style-display h3 {
|
|
font-size: 30pt;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #1FAB89;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
.main-pomodoro .start-pomodoro {
|
|
background: none;
|
|
border: none;
|
|
width: 8vw;
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 700;
|
|
margin-top: 6vh;
|
|
width: 30vw;
|
|
height: 8vh;
|
|
background: #1FAB89;
|
|
border-radius: 24px;
|
|
font-size: 5vh;
|
|
color: white;
|
|
}
|
|
|
|
.style-selector {
|
|
width: calc(20vw - 1px);
|
|
padding-left: 3vw;
|
|
padding-bottom: 12vh;
|
|
position: absolute;
|
|
top: 29vh;
|
|
left: 75vw;
|
|
box-shadow: 1px 6px 15px #00000020;
|
|
z-index: 50;
|
|
transition: 0.2s ease-in-out;
|
|
}
|
|
.style-selector h2 {
|
|
font-family: "Rambla", sans-serif;
|
|
color: #1FAB89;
|
|
font-size: 30pt;
|
|
text-align: center;
|
|
margin-left: -3vw;
|
|
margin-top: 1vh;
|
|
margin-bottom: 3vh;
|
|
}
|
|
.style-selector .style-selection-container .style-container {
|
|
display: flex;
|
|
height: 10vh;
|
|
align-items: center;
|
|
}
|
|
.style-selector .style-selection-container .style-container label {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
}
|
|
.style-selector .style-selection-container .style-container label .title {
|
|
font-family: "Rambla", sans-serif;
|
|
font-size: 13pt;
|
|
}
|
|
.style-selector .style-selection-container .style-container label .times {
|
|
font-family: "Rambla", sans-serif;
|
|
color: #1FAB89;
|
|
font-size: 13pt;
|
|
}
|
|
.style-selector .style-selection-container input {
|
|
width: 65px;
|
|
opacity: 0;
|
|
}
|
|
.style-selector .style-selection-container .checkbox__input {
|
|
display: grid;
|
|
grid-template-areas: "checkbox";
|
|
}
|
|
.style-selector .style-selection-container .checkbox__input > * {
|
|
grid-area: checkbox;
|
|
}
|
|
.style-selector .style-selection-container .checkbox_control {
|
|
display: inline-grid;
|
|
width: 45px;
|
|
height: 45px;
|
|
border: 3px solid #62D2A2;
|
|
border-radius: 0.25em;
|
|
border-radius: 100%;
|
|
transition: ease-in-out 0.2s;
|
|
}
|
|
.style-selector .style-selection-container .checkbox__input input:checked + .checkbox_control {
|
|
background-color: #9DF3C4;
|
|
}
|
|
|
|
.style-selector-show {
|
|
opacity: 100%;
|
|
}
|
|
|
|
.style-selector-hidden {
|
|
opacity: 0%;
|
|
}
|
|
|
|
.go-down {
|
|
height: 7vh;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
}
|
|
.go-down svg {
|
|
height: 6vh;
|
|
}
|
|
.go-down svg path {
|
|
fill: #aaaaaa;
|
|
}
|
|
|
|
#about-this {
|
|
height: 95vh;
|
|
padding: 0px 3vw;
|
|
padding-top: 5vh;
|
|
}
|
|
#about-this .titles {
|
|
display: flex;
|
|
}
|
|
#about-this .titles h3 {
|
|
width: 50%;
|
|
font-family: "Raleway", sans-serif;
|
|
font-weight: 700;
|
|
margin: 0;
|
|
padding: 0;
|
|
user-select: none;
|
|
font-size: 22pt;
|
|
}
|
|
#about-this .titles h3 .line-through {
|
|
text-decoration: line-through;
|
|
text-decoration-thickness: 5px;
|
|
text-decoration-color: #73b7ff;
|
|
}
|
|
#about-this .information {
|
|
display: flex;
|
|
}
|
|
#about-this .information ul {
|
|
width: 50%;
|
|
}
|
|
#about-this .information ul li h4 {
|
|
margin: 0;
|
|
padding: 0;
|
|
user-select: none;
|
|
font-family: "Rambla", sans-serif;
|
|
font-size: 18pt;
|
|
}
|
|
#about-this .information ul li p {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: "Rambla", sans-serif;
|
|
font-size: 13pt;
|
|
margin-left: 2vw;
|
|
margin-top: 1vh;
|
|
}
|
|
|
|
html, body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
background-color: #ffffff;
|
|
}
|
|
|
|
/*# sourceMappingURL=styles.css.map */
|