Skip to content

Commit

Permalink
Updated index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Extomvi committed May 26, 2022
1 parent a3addee commit 7cf7c75
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 1 deletion.
37 changes: 37 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,41 @@ span{
color: var(--secound-color);
line-height: 28px;
margin-bottom: 20px;
}
.social a{
width: 35px;
height: 35px;
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
background: rgba(128,103,240,1);
font-size: 17px;
color: var(--bg-color);
margin-right: 22px;
margin-bottom: 30px;
}
.social a:hover{
transform: scale(1.1);
background: var(--main-color);
transition: .5s;
}
.btn{
display: inline-block;
color: var(--bg-color);
background: var(--main-color);
font-size: var(--p-font);
padding: 10px 40px;
font-weight: 500;
line-height: 24px;
border-radius: 30px;
transition: ease .40s;
}
.btn:hover{
transform: scale(1.1);
}
.home-img img{
max-width: 100%;
width: 540px;
height: auto;
}
7 changes: 6 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html>
<head>
<title>Tomiwa Portfolio</title>
<meta charset="utf-8"
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1" />
<link rel="stylesheet" href="https://unpkg.com/boxicons@latest/css/boxicons.min.css">

Expand Down Expand Up @@ -50,6 +50,11 @@ <h5>A Software Engineer <span>From Lagos, Nigeria</span></h5>

</section>

<!-- Other sections -->
<section class="other-sections">

</section>

<!-- Joining js script -->
<script type="text/javascript" src="js/script.js"></script>

Expand Down

0 comments on commit 7cf7c75

Please sign in to comment.