Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ADITYAC1234 committed Jun 9, 2024
0 parents commit 08ba5a0
Show file tree
Hide file tree
Showing 1,093 changed files with 137,375 additions and 0 deletions.
Binary file added .DS_Store
Binary file not shown.
Binary file added Public/.DS_Store
Binary file not shown.
93 changes: 93 additions & 0 deletions Public/styles/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f8ff;
color: #333;
}

.container {
width: 80%;
margin: 20px auto;
overflow: hidden;
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
text-align: center;
margin-top: 0;
color: #4a90e2;
}

.problems {
margin: 20px 0;
}

h2 {
color: #4a90e2;
border-bottom: 2px solid #4a90e2;
padding-bottom: 5px;
}

ul {
list-style-type: none;
padding: 0;
}

li {
background: #e3f2fd;
margin: 10px 0;
padding: 15px;
border-radius: 8px;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.3s;
}

li:hover {
background: #d1e9ff;
}

input[type="checkbox"] {
margin-right: 10px;
}

label {
flex-grow: 1;
cursor: pointer;
}

a {
text-decoration: none;
color: #4a90e2;
background-color: #f0f8ff;
padding: 5px 10px;
border-radius: 5px;
transition: background-color 0.3s;
}

a:hover {
background-color: #d1e9ff;
text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
.container {
width: 95%;
}

li {
flex-direction: column;
align-items: flex-start;
}

a {
margin-top: 10px;
padding: 8px;
}
}
Loading

0 comments on commit 08ba5a0

Please sign in to comment.