Skip to content

Commit

Permalink
Update style.css
Browse files Browse the repository at this point in the history
  • Loading branch information
PrashantAnand03 authored Jul 29, 2024
1 parent 95b18c2 commit 24abce4
Showing 1 changed file with 22 additions and 7 deletions.
29 changes: 22 additions & 7 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -1967,29 +1967,44 @@ font-size: 36px;
}

.quick-links {
text-align: center;
width: 50vw;
padding: 20px;
p{
font-weight: bold;
text-align: center;
width: 80vw;
padding: 20px;
}

.quick-links p {
font-weight: bold;
}

.quick-links h2 {
font-size: 20px;
font-size: 15px;
margin-bottom: 15px;
}


.quick-links ul {
list-style-type: none;
padding: 0;
display: flex;
align-items: center;
justify-content: space-between;
margin: 0;
}

.quick-links li {
margin-bottom: 8px;
position: relative; /* To position the vertical line */
padding: 0 20px; /* Add horizontal padding to create space for the vertical line */
}

.quick-links li:not(:last-child)::after {
content: "|";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
color: #fff;
font-size: 1.5rem;
padding-left: 10px;
}

.quick-links a {
Expand Down

0 comments on commit 24abce4

Please sign in to comment.