Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Competitive Programming Roadmap #118

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions assests/openStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -154,4 +154,42 @@ a{
color: #fff;
margin: 0 var(--mb-2)
}


/* Styling of cp raodmap container starts */
h2 {
text-align: center;
margin-top: 20px;
color: #e94560;
}

.table-container {
margin: 20px auto;
width: 100%;
}

table {
width: 100%;
border-collapse: collapse;
}

table th, table td {
border: 1px solid #ddd;
padding: 8px;
}

table th {
background-color: #f2f2f2;
text-align: left;
color: #e94560;
}

table tr:nth-child(even) {
background-color: #f9f9f9;
}

table tr:hover {
background-color: #f2f2f2;
}
/* Styling of cp raodmap container ends */

32 changes: 32 additions & 0 deletions competitive.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,38 @@ <h2 class="info__title">Competitive Programming</h2>
</ul>
</div>
<!------>
<!-- Competitive programming roadmap container starts -->
<h2>Competitive Programming Roadmap</h2>

<div class="table-container">
<table>
<thead>
<tr>
<th>Resource </th>
<th>Description</th>

</tr>
</thead>
<tbody>
<tr>
<td> <a href="https://whimsical.com/codeforces-candidate-master-roadmap-by-love-babbar-CiXPPD3CnwoXPr2d8Ajx1h">Roadmap</a> </td>
<td>This roadmap in competitive programming (CP) serves as a structured plan to guide your learning and practice efforts in order to improve your skills and performance in competitive programming competitions. </td>

</tr>


</tbody>
</table>
</div>






<!-- Competitive programming roadmap container ends -->


<div class="media-body">
<h2 class="info__title">Resources</h2>
<p class="info__text">
Expand Down