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
26 changes: 20 additions & 6 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ body {
font-family: Montserrat, Helvetica Neue, sans-serif;
line-height: 2em;
box-sizing: border-box;
color: #333333b3;
color: #4c4177;
/* background: linear-gradient(to bottom right, #ffded1 0%,#ffded1 50%,#ffc5af 50%,#ffc5af 100%); */
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
background-image: linear-gradient(315deg, #4c4177 0%, #2a5470 74%);
height:100vh;
overflow: hidden;
color: white;
}

html, body {
Expand All @@ -14,12 +17,12 @@ html, body {

a {
text-decoration: none;
color: #1b6568;
color: #98cfd1;
transition-duration: 100ms;
}
.github {
float: right;
fill: #445978;
fill: #031e47;
padding-top: 5px;
}

Expand All @@ -28,6 +31,7 @@ p {
font-weight: 300;
font-size: 23px;
text-align: center;

}

.name {
Expand All @@ -46,8 +50,8 @@ p {
padding: 12px;
line-height: normal;
text-align: center;
border: 4px solid #445978;
color: #445978;
border: 4px solid #e1e5eb;
color: #8ab0e9;
}

main {
Expand All @@ -66,15 +70,25 @@ div.grid {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
width:90%;
padding: 10px;
margin: 100px auto;
justify-content: center;
}

div.grid-item {
margin-bottom: 20px;
margin-top: 10px;
width: 100px;
height: 100px;
transition: 1s;
}

.language-name:hover{
border-bottom: 3px solid #1b6568;
transition-duration: 100ms;
}
div.grid-item:hover{
transform: scale(1.3);
}

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"><b>open source</b></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