Skip to content
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
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,15 @@ <h2>Spiderman Miles Morales</h2>
<h2 class="percentage">60%</h2>
</div>
</div>
<!----CREATING A BUTTON FOR MORE GAMES-->
<div class="button">
<button class="nextpage">More Games..</button>
</div>
</div>
</section>
</main>
<div class="circle1"></div>
<div class="circle1">
</div>
<div class="circle2"></div>
</body>
</html>
18 changes: 18 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,24 @@ main {
justify-content: center;
}

.button {
display: flex;
justify-content: center;
}

.nextpage:hover {
color: #426696;
}

.nextpage {
margin: 10px;
background: linear-gradient(to right top, #65dfc9, #6cdbeb);
border-radius: 2rem;
color: white;
padding: 2rem;
position: relative;
}

.glass {
background: white;
min-height: 80vh;
Expand Down