Modern Personal Website Landing page with full screen background image and some fancy blur effects, cool fonts and logo display.
Created
August 25, 2017 05:41
-
-
Save gucheen/1a18ab0b35f2f3747976827e3b202bf6 to your computer and use it in GitHub Desktop.
Personal Website Landing page
This file contains hidden or 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
<div class="cover"> | |
<div class="bg"></div> | |
<div class="title"> | |
<div class="logo"> | |
</div> | |
<div class="text"> | |
This is the title | |
</div> | |
<div class="desc"> | |
Welcome to my beautiful new website. You can find out more about me by scrolling or clicking a button. | |
</div> | |
</div> | |
</div> | |
<div class="social"> | |
<a href="http://www.uplabs.com/jaka_music" target="_blank">UpLabs</a> | |
<a href="http://www.behance.net/jakamusic" target="_blank">Behance</a> | |
<a href="https://plus.google.com/u/0/+JakaMusic/posts" target="_blank">G+</a> | |
</div> |
This file contains hidden or 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
@import url(https://fonts.googleapis.com/css?family=Raleway:400,300,500,200); | |
body { | |
background-color: rgba(0, 0, 0, 0.9); | |
} | |
.bg { | |
background-image: url(http://shrani.si/f/3A/JY/3mEc61r0/vr4v2bqroc.jpg); | |
background-size: cover; | |
filter: blur(10px); | |
-webkit-filter: blur(10px); | |
display: block; | |
height: 110%; | |
width: 110%; | |
left: -10px; | |
position: fixed; | |
top: -10px; | |
right: 0; | |
z-index: 1; | |
transition: all 1000ms; | |
background-size: 100%; | |
background-position: center; | |
} | |
.cover:hover .bg { | |
filter: blur(0px); | |
-webkit-filter: blur(0px); | |
background-size: 110%; | |
background-position: center; | |
} | |
.title { | |
font-family: Raleway; | |
width: 300px; | |
height: 350px; | |
z-index: 3; | |
top: 50%; | |
margin-top: -175px; | |
left: 50%; | |
margin-left: -140px; | |
position: absolute; | |
color: #fff; | |
text-align: center; | |
transition: all 1000ms; | |
} | |
.cover:hover .title { | |
filter: blur(2px); | |
-webkit-filter: blur(2px); | |
} | |
.title .text { | |
font-size: 35px; | |
font-weight: 200; | |
margin-top: 20px; | |
} | |
.title .desc { | |
font-size: 15px; | |
font-weight: 400; | |
margin-top: 30px; | |
} | |
.logo { | |
background: url(http://shrani.si/f/I/Ze/4Qj9jIQ9/logo.png); | |
width: 180px; | |
height: 180px; | |
left: 50%; | |
position: relative; | |
margin-left: -90px; | |
margin-top: 10px; | |
background-size: 180px; | |
} | |
/*social buttons*/ | |
.social { | |
position:fixed; | |
bottom:15px; | |
z-index:10; | |
text-align: center; | |
width:100%; | |
} | |
.social a { | |
font-family: Raleway; | |
color:white; | |
text-decoration:none; | |
margin-left:5px; | |
margin-right:5px; | |
filter: blur(2px); | |
transition: all 200ms; | |
} | |
.social a:hover { | |
font-size:19px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment