Skip to content

Commit

Permalink
style main page
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorVilas committed Jan 17, 2023
1 parent 5b3eb65 commit bc2cb10
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,47 @@ input:not([type="checkbox"]):focus {
to { background-size: var(--icon-size); }
}



/* main page */

.projects-div {
/* border: 3px solid red; */
overflow-x: hidden;
overflow-y: auto;
display: grid;
justify-content: center;
}

.projects-container {
padding: 1rem;
}

.card.main-page-card {
display: grid;
grid-template-columns: repeat(2, auto);
grid-template-rows: repeat(2, 1fr);
grid-template-areas:
"title todos"
"due due ";
gap: 1rem;
cursor: pointer;
margin-bottom: .25rem;
}

.main-page-title {
grid-area: title;
}
.main-page-todos {
grid-area: todos;
justify-self: right;
}
.main-page-due {
grid-area: due;
}



/* page content */

body {background-color: var(--bgc-page);}
Expand Down

0 comments on commit bc2cb10

Please sign in to comment.