Skip to content

Commit

Permalink
Merge pull request #121 from DishaSharma-dev/master
Browse files Browse the repository at this point in the history
universe theme added
  • Loading branch information
MichaelBarney authored Oct 24, 2023
2 parents 77de89d + b35a906 commit b410f40
Show file tree
Hide file tree
Showing 12 changed files with 5,119 additions and 0 deletions.
2,337 changes: 2,337 additions & 0 deletions Templates/Universe/assets/css/font-awesome.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions Templates/Universe/assets/css/font-awesome.min.css

Large diffs are not rendered by default.

69 changes: 69 additions & 0 deletions Templates/Universe/assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
/* Style Settings */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');

body {
background: url('../images/universe.jpeg');
font-family: 'Open Sans', sans-serif;
font-weight: 600;
}

#userPhoto {
width: 100px;
height: 100px;
display: block;
margin: 10px auto;
border-radius: 20%;
}

#userName {
color: #fff;
display: block;
width: 100%;
text-align: center;
text-decoration: none;
}

#userName h1 {
font-size: 2rem;
font-weight: 300;
letter-spacing: 0.2rem;
margin: 0 auto;
}

#userName p {
font-weight: 300;
margin-top: 5px;
text-transform: none;
}

i.fa {
margin-right: 0.3rem;
}

#links {
max-width: 500px;
width: auto;
display: block;
margin: 20px auto;
}

.link {
display: block;
background-color: rgba(66, 110, 255, 0.2);
color: #fff;
text-align: center;
margin-bottom: 20px;
padding: 17px;
text-decoration: none;
font-size: 1.2rem;
font-weight: 300;
transition: all .25s cubic-bezier(.08, .59, .29, .99);
border-radius: 10px;

}

.link:hover {
background-color: rgba(255, 255, 255, 0.3);
color: #000000;
border: none;
}
Binary file added Templates/Universe/assets/fonts/FontAwesome.otf
Binary file not shown.
Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions Templates/Universe/assets/fonts/fontawesome-webfont.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added Templates/Universe/assets/images/favicon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Templates/Universe/assets/images/universe.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
38 changes: 38 additions & 0 deletions Templates/Universe/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>

<html>

<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<title>LinkFree | Luã Braga</title>
<link rel="stylesheet" href="assets/css/style.css">
<link rel="stylesheet" href="assets/css/font-awesome.min.css">
<link rel="icon" href="assets/imagens/favicon.png" type="image/x-icon" />
</head>

<body>
<div id="profile">
<img id="userPhoto" src="" alt="your profile picture">
<div id="userName">
<h1>Your name</h1>
<p>Software Engineer</p>
</div>
</div>
<div id="links">
<a class="link" href="" target="_blank"><i class="fa fa-github"></i> Github</a>
<a class="link" href="" target="_blank"><i class="fa fa-linkedin"
aria-hidden="true"></i> LinkedIn</a>
<a class="link" href="" target="_blank"><i class="fa fa-globe" aria-hidden="true"></i>
Website</a>
<a class="link" href="" target="_blank"><i class="fa fa-envelope"
aria-hidden="true"></i>
E-mail</a>
<a class="link" href="" target="_blank"><i
class="fa fa-whatsapp" aria-hidden="true"></i>
WhatsApp</a>
</div>

</body>

</html>

0 comments on commit b410f40

Please sign in to comment.