Skip to content

Instantly share code, notes, and snippets.

@BadgerBadgerBadgerBadger
Created October 12, 2013 09:06
Show Gist options
  • Save BadgerBadgerBadgerBadger/6947723 to your computer and use it in GitHub Desktop.
Save BadgerBadgerBadgerBadger/6947723 to your computer and use it in GitHub Desktop.
CSS
body, html{
background-image: image-url('blu-tex.png');
font-size: 100%;
}
a{
color: inherit;
text-decoration: inherit;
}
.header{
position: absolute;
left: 10%;
top: 0.5%;
width: 80%;
height: 25%;
background-color: rgba(21, 21, 21, 0.7);
}
.logo{
position: absolute;
left: 1%;
top: 5%;
width: 45%;
height: 75%;
background-color: rgba(255, 255, 255, 0.7);
}
.hr{
position: absolute;
width: 100%;
top: 60%;
}
.nav-bar{
position: absolute;
bottom: 1.5%;
width: 60%;
left: 27%;
}
.nav-link{
font-size: 95%;
font-weight: bold;
padding: 0.9%;
margin-left: 0.5%;
background-color: #C8D8DE;
border-radius: 2px 2px 0px 0px;
-webkit-transition: all 0.05s linear 0s;
-moz-transition: all 0.05s linear 0s;
-o-transition: all 0.05s linear 0s;
transition: all 0.05s linear 0s;
&:hover{
padding: 0.9%;
}
}
.yield-wrapper{
/*border: 1px solid black;*/
position: absolute;
height: auto;
width: 80%;
left: 10%;
top: 26%;
background-color: rgba(221, 221, 221, 0.7);
border: {
left: 1px solid #AAA;
right: 1px solid #AAA;
}
}
.about-wrapper{
position: absolute;
left: 3%;
top: 2%;
}
.about-desc{
text-align: justify;
width: 60%;
}
.about-team{
text-align: justify;
width: 60%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment