design toolbar & responsive task overview

This commit is contained in:
Chneemann 2024-04-25 09:44:06 +02:00
parent e5ea40532b
commit ed9a48fd62
2 changed files with 44 additions and 11 deletions

View file

@ -42,12 +42,16 @@
.headline { .headline {
font-size: 61px; font-size: 61px;
font-weight: 700; font-weight: 700;
width: 100%;
word-wrap: break-word;
} }
.description { .description {
font-size: 20px; font-size: 20px;
font-weight: 400; font-weight: 400;
margin-top: 32px; margin-top: 32px;
width: 100%;
word-wrap: break-word;
} }
// DATE // DATE
@ -239,3 +243,28 @@
} }
} }
} }
/*------------- RESPONSIVE -------------*/
@media screen and (max-width: 650px) {
.headline {
font-size: 36px;
}
.description,
.date,
.priority,
.assigned,
.subtasks {
font-size: 16px;
}
.subtasks,
.assigned,
.date,
.priority {
p {
font-size: 16px;
}
}
}

View file

@ -37,18 +37,22 @@ body {
/*------------- SCROLLBAR -------------*/ /*------------- SCROLLBAR -------------*/
*::-webkit-scrollbar { ::-webkit-scrollbar-track {
width: 16px; -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}
*::-webkit-scrollbar-track {
background: var(--white);
}
*::-webkit-scrollbar-thumb {
background-color: var(--light-gray);
border-radius: 10px; border-radius: 10px;
border: 3px solid var(--white); background-color: var(--white);
}
::-webkit-scrollbar {
width: 6px;
height: 6px;
background-color: var(--white);
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
background-color: var(--light-gray);
} }
/*------------- FONTS -------------*/ /*------------- FONTS -------------*/