Skip to content

Commit

Permalink
Merge pull request #1 from bmlt-enabled/pj/css
Browse files Browse the repository at this point in the history
make css mo pretty
  • Loading branch information
dgershman authored Jan 18, 2024
2 parents 4c9599a + 64f5b83 commit 65429f5
Showing 1 changed file with 40 additions and 13 deletions.
53 changes: 40 additions & 13 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,31 +1,58 @@
.App {
text-align: center;
}

.App-logo {
height: 40vmin;
pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
font-family: Arial, sans-serif;
}

.App-header {
background-color: #282c34;
background-color: #61dafb;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-size: calc(10px + 2vmin);
color: white;
}

h2 {
font-size: 24px;
margin-bottom: 20px;
text-align: center;
color: #333;
}

table {
width: 80%;
border-collapse: collapse;
margin: 20px auto;
background-color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

table th,
table td {
padding: 10px;
text-align: left;
border-bottom: 1px solid #ddd;
}

table th {
background-color: #f2f2f2;
font-weight: bold;
}

tr:hover {
background-color: #f5f5f5;
}

.App-link {
color: #61dafb;
text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
}

@keyframes App-logo-spin {
Expand Down

0 comments on commit 65429f5

Please sign in to comment.