Skip to content

Commit

Permalink
Update projects_styles.css
Browse files Browse the repository at this point in the history
  • Loading branch information
AGolz authored Jan 17, 2024
1 parent 56dcea5 commit 162b969
Showing 1 changed file with 8 additions and 25 deletions.
33 changes: 8 additions & 25 deletions styles/projects_styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ body {
align-items: center;
justify-content: flex-start;
min-height: 100vh;
margin: 10px;
margin: 10px;
padding: 0;
font-family: 'Indie Flower';
color: #491617;
Expand All @@ -31,29 +31,20 @@ body {
.project-menu a:active,
.project-menu a:focus {
border-bottom-color: #491617;
}
}

table {
border-collapse: collapse;
width: 80%;
margin-top: 20px;
display: none;
opacity: 0;
visibility: hidden;
transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.table-hidden {
opacity: 0;
transition: opacity 0.5s ease-in-out;
}

.table-visible {
opacity: 1;
transition: opacity 0.5s ease-in-out;
}


th, td {
padding: 10px;
font-family: Arial, sans-serif;
Expand All @@ -68,42 +59,34 @@ td:first-child {

th:last-child,
td:not(:first-child) {
text-align: center;
font-weight: normal;
font-family: Arial, sans-serif;
text-align: center;
font-weight: normal;
font-family: Arial, sans-serif;
}

a {
color: #491617;
font-family: Arial, sans-serif;
}

table a:hover,
table a:active,
table a:focus {
text-decoration: underline;
}

strong {
font-weight: bold;
display: block;
margin-top: 10px;
}

#cat {
position: absolute;
width: 200px;
height: 200px;
z-index: 999;
pointer-events: none;
}

.fade-in {
opacity: 1;
visibility: visible;
}

.fade-out {
opacity: 0;
visibility: hidden;
}

0 comments on commit 162b969

Please sign in to comment.