-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #121 from DishaSharma-dev/master
universe theme added
- Loading branch information
Showing
12 changed files
with
5,119 additions
and
0 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 not shown.
Binary file not shown.
2,671 changes: 2,671 additions & 0 deletions
2,671
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |