-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 08ba5a0
Showing
1,093 changed files
with
137,375 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
Oops, something went wrong.