-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restructured and renamed the files for better understanding
- Loading branch information
1 parent
739e65c
commit 659243b
Showing
5 changed files
with
547 additions
and
233 deletions.
There are no files selected for viewing
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
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,15 @@ | ||
.card { | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s, box-shadow 0.3s; | ||
} | ||
|
||
.card:hover { | ||
transform: translateY(-10px); | ||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
h3 { | ||
text-align: center; | ||
color: #007bff; | ||
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); | ||
} |
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,151 @@ | ||
.card { | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
transition: transform 0.3s, box-shadow 0.3s; | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.card:hover { | ||
transform: translateY(-10px); | ||
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
h2, | ||
h3 { | ||
text-align: center; | ||
color: #007bff; | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); | ||
} | ||
|
||
.user-info-card { | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); | ||
padding: 20px; | ||
margin-bottom: 20px; | ||
display: none; | ||
align-items: center; | ||
max-width: 600px; | ||
margin: 0 auto; | ||
} | ||
|
||
.user-info-card img { | ||
border-radius: 50%; | ||
max-width: 150px; | ||
height: auto; | ||
margin-right: 20px; | ||
} | ||
|
||
.user-details { | ||
flex-grow: 1; | ||
text-align: center; | ||
/* Center align user details */ | ||
} | ||
|
||
.form-control { | ||
width: 200px; | ||
margin: 0 auto; | ||
display: block; | ||
} | ||
|
||
.repo-card { | ||
display: flex; | ||
flex-direction: column; | ||
height: 100%; | ||
border-top: 1px solid #ccc; | ||
padding-top: 10px; | ||
} | ||
|
||
.repo-card .card-body { | ||
flex: 1; | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
.repo-description { | ||
margin-top: auto; | ||
padding: 1rem; | ||
background-color: #d0ebff; | ||
border: 1px solid #74c0fc; | ||
border-radius: 0.25rem; | ||
} | ||
|
||
.repo-link { | ||
text-align: center; | ||
margin-top: auto; | ||
} | ||
|
||
.repo-link a { | ||
display: inline-block; | ||
margin-top: 10px; | ||
padding: 5px 10px; | ||
background-color: #007bff; | ||
color: #ffffff; | ||
border-radius: 4px; | ||
text-decoration: none; | ||
} | ||
|
||
.repo-link a:hover { | ||
text-decoration: none; | ||
background-color: #0056b3; | ||
color: #ffffff; | ||
} | ||
|
||
.pagination { | ||
justify-content: center; | ||
margin-top: 20px; | ||
} | ||
|
||
.loader-container { | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
flex-direction: column; | ||
} | ||
|
||
.loader { | ||
border: 16px solid #f3f3f3; | ||
border-radius: 50%; | ||
border-top: 16px solid #3498db; | ||
width: 120px; | ||
height: 120px; | ||
animation: spin 2s linear infinite; | ||
margin-bottom: 20px; | ||
} | ||
|
||
@keyframes spin { | ||
0% { | ||
transform: rotate(0deg); | ||
} | ||
|
||
100% { | ||
transform: rotate(360deg); | ||
} | ||
} | ||
|
||
.repo-card .card-title { | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); | ||
/* Adding shadow effect to repo name */ | ||
color: #007bff; | ||
/* Adjust color to match existing theme */ | ||
} | ||
|
||
.topic-button { | ||
background-color: #ffc107; | ||
/* Yellow background color */ | ||
color: #212529; | ||
border: none; | ||
margin: 2px; | ||
box-shadow: 0 2px 4px rgba(255, 193, 7, 0.5); | ||
/* Shadow effect for topics button */ | ||
} | ||
|
||
.topic-button:hover { | ||
background-color: #ffb400; | ||
/* Darker yellow on hover */ | ||
color: #212529; | ||
} | ||
|
||
.centered-td { | ||
text-align: center; | ||
vertical-align: middle; | ||
} |
Oops, something went wrong.