Skip to content

Commit

Permalink
Better organization
Browse files Browse the repository at this point in the history
  • Loading branch information
leandono committed Jan 2, 2014
1 parent d8cdd50 commit db0e5d3
Show file tree
Hide file tree
Showing 51 changed files with 1,822 additions and 1,864 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@ results
npm-debug.log
node_modules

.sass-cache
.sass-cache

.DS_Store
59 changes: 58 additions & 1 deletion css/demo-page.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,62 @@ h2 {
font-weight: 900;
}

#forkongithub a {
background: #000;
color: #fff;
text-decoration: none;
font-family: arial, sans-serif;
text-align: center;
font-weight: bold;
padding: 5px 40px;
font-size: 1rem;
line-height: 2rem;
position: relative;
-webkit-transition: 0.5s;
transition: 0.5s;
}

#forkongithub a:hover {
background: #060;
color: #fff;
}

#forkongithub a::before,
#forkongithub a::after {
content: "";
width: 100%;
display: block;
position: absolute;
top: 1px;
left: 0;
height: 1px;
background: #fff;
}

#forkongithub a::after {
bottom: 1px;
top: auto;
}

#forkongithub a{background:#000;color:#fff;text-decoration:none;font-family:arial, sans-serif;text-align:center;font-weight:bold;padding:5px 40px;font-size:1rem;line-height:2rem;position:relative;transition:0.5s;}#forkongithub a:hover{background:#060;color:#fff;}#forkongithub a::before,#forkongithub a::after{content:"";width:100%;display:block;position:absolute;top:1px;left:0;height:1px;background:#fff;}#forkongithub a::after{bottom:1px;top:auto;}@media screen and (min-width:800px){#forkongithub{position:absolute;display:block;top:0;right:0;width:200px;overflow:hidden;height:200px;}#forkongithub a{width:200px;position:absolute;top:60px;right:-60px;transform:rotate(45deg);-webkit-transform:rotate(45deg);box-shadow:4px 4px 10px rgba(0,0,0,0.8);}}
@media screen and (min-width:800px) {
#forkongithub {
position: absolute;
display: block;
top: 0;
right: 0;
width: 200px;
overflow: hidden;
height: 200px;
}

#forkongithub a {
width: 200px;
position: absolute;
top: 60px;
right: -60px;
-ms-transform: rotate(45deg);
transform: rotate(45deg);
-webkit-transform: rotate(45deg);
box-shadow: 4px 4px 10px rgba(0,0,0,0.8);
}
}
2 changes: 1 addition & 1 deletion css/hover-min.css

Large diffs are not rendered by default.

Loading

0 comments on commit db0e5d3

Please sign in to comment.