Skip to content
This repository was archived by the owner on Mar 1, 2021. It is now read-only.
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
17 changes: 12 additions & 5 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
body {
font-family: Montserrat, Helvetica Neue, sans-serif;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
line-height: 2em;
box-sizing: border-box;
color: #333333b3;
color:rgb(100, 95, 95);
/* background: linear-gradient(to bottom right, #ffded1 0%,#ffded1 50%,#ffc5af 50%,#ffc5af 100%); */
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}
Expand All @@ -14,7 +14,7 @@ html, body {

a {
text-decoration: none;
color: #1b6568;
color:rgb(71, 61, 61);
transition-duration: 100ms;
}
.github {
Expand All @@ -24,9 +24,9 @@ a {
}

p {
font-family: 'Roboto';
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-weight: 300;
font-size: 23px;
font-size: 29px;
text-align: center;
}

Expand All @@ -48,7 +48,14 @@ p {
text-align: center;
border: 4px solid #445978;
color: #445978;
border-radius: 15px;
}
.container header:hover {
background-color:rgb(245, 225, 225);
color: rgb(85, 81, 81);
cursor: pointer;
}


main {
padding: 1em;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1 class="name">The Algorithms</h1>
</header>
<main>
<div class="intro">
<p>We are an <a href="http://en.wikipedia.org/wiki/Open-source_software" target="_blank">open source</a> community established to help people find all the algorithms and data structures for every popular language at a single place.</p>
<p>We are an <a href="http://en.wikipedia.org/wiki/Open-source_software" target="_blank">Open Source</a> community established to help people find all the algorithms and data structures for every popular language at a single place.</p>
</div>
<p>Explore Algorithms Implementation in the following Programming Languages</p>
<div class="grid">
Expand Down