Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Gradient Effect for Small Cards #238

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,21 @@ body {
rgba(29, 29, 29, 1) 100%
);
}
.small-container {
display: flex;
justify-content: flex-start;
align-items: center;
border: 1px solid #ccc;
padding: 10px 15px;
border-radius: 5px;
background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); /* Added gradient */
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
text-align: left;
min-height: 45px;
max-height: 90px;
height: auto;
box-sizing: border-box;
}

.container {
width: 100%;
Expand All @@ -33,7 +48,7 @@ body {
font-size: 5rem;
padding: 8px 16px;
text-shadow: 0 3px 10px rgba(10, 10, 10, 40);
animation: bounce 1s infinite;

}

h1 {
Expand Down Expand Up @@ -127,7 +142,7 @@ h1 {
border: 1px solid #ccc;
padding: 10px 15px;
border-radius: 5px;
background-color: #fff;
background: linear-gradient(135deg, #0059de 0%, #04bcc3 100%); /* Added gradient */
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
text-align: left;
min-height: 45px;
Expand All @@ -136,6 +151,7 @@ h1 {
box-sizing: border-box;
}


.task-info {
display: flex;
align-items: center;
Expand Down
Loading