-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 587f00e
Showing
65 changed files
with
4,759 additions
and
0 deletions.
There are no files selected for viewing
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,7 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"" | ||
], | ||
"SelectedNode": "\\index.html", | ||
"PreviewInSolutionExplorer": false | ||
} |
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
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,117 @@ | ||
.shadow { | ||
width: 100%; | ||
height: 168px; | ||
position: relative; | ||
margin-top: -110px; | ||
background: transparent url(../images/shadow.png) no-repeat bottom center; | ||
background-size: 60% 80%; /* stretches it */ | ||
z-index: -1; | ||
display: none; | ||
} | ||
body{ | ||
text-align: center; | ||
|
||
} | ||
.sb-description h3 { | ||
font-size: 25px; | ||
text-shadow: 1px 1px 1px rgba(0,0,0,0.3); | ||
} | ||
|
||
.sb-description h3 a { | ||
color: #4a3c27; | ||
text-shadow: 0 1px 1px rgba(255,255,255,0.5); | ||
} | ||
|
||
.nav-arrows { | ||
display: none; | ||
|
||
} | ||
|
||
.nav-arrows a { | ||
margin-top:100%; | ||
margin:25%; | ||
width: 42px; | ||
height: 42px; | ||
background: #cbbfae url(../images/nav.png) no-repeat top left; | ||
position: absolute; | ||
top: 50%; | ||
left: 2px; | ||
text-indent: -9000px; | ||
cursor: pointer; | ||
margin-top: -21px; | ||
opacity: 0.9; | ||
border-radius: 50%; | ||
box-shadow: 0 1px 1px rgba(255,255,255,0.8); | ||
|
||
|
||
} | ||
|
||
.nav-arrows a:first-child{ | ||
left: auto; | ||
right: 2px; | ||
background-position: top right; | ||
} | ||
|
||
.nav-arrows a:hover { | ||
opacity: 1; | ||
} | ||
|
||
.nav-dots { | ||
text-align: center; | ||
position: absolute; | ||
bottom: -5px; | ||
height: 30px; | ||
width: 100%; | ||
left: 0; | ||
display: none; | ||
} | ||
|
||
.nav-dots span { | ||
display: inline-block; | ||
width: 16px; | ||
height: 16px; | ||
border-radius: 50%; | ||
margin: 3px; | ||
background: #cbbfae; | ||
cursor: pointer; | ||
box-shadow: | ||
0 1px 1px rgba(255,255,255,0.6), | ||
inset 0 1px 1px rgba(0,0,0,0.1); | ||
} | ||
|
||
.nav-dots span.nav-dot-current { | ||
box-shadow: | ||
0 1px 1px rgba(255,255,255,0.6), | ||
inset 0 1px 1px rgba(0,0,0,0.1), | ||
inset 0 0 0 3px #cbbfae, | ||
inset 0 0 0 8px #fff; | ||
} | ||
|
||
.nav-options { | ||
width: 70px; | ||
height: 30px; | ||
position: absolute; | ||
right: 70px; | ||
bottom: 0px; | ||
display: none; | ||
} | ||
|
||
.nav-options span { | ||
width: 30px; | ||
height: 30px; | ||
background: #cbbfae url(../images/options.png) no-repeat top left; | ||
text-indent: -9000px; | ||
cursor: pointer; | ||
opacity: 0.7; | ||
display: inline-block; | ||
border-radius: 50%; | ||
} | ||
|
||
.nav-options span:first-child{ | ||
background-position: -30px 0px; | ||
margin-right: 3px; | ||
} | ||
|
||
.nav-options span:hover { | ||
opacity: 1; | ||
} |
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,164 @@ | ||
@import url(http://fonts.googleapis.com/css?family=PT+Sans+Narrow|Volkhov:400italic,700); | ||
|
||
*, | ||
*:after, | ||
*:before { | ||
-webkit-box-sizing: border-box; | ||
-moz-box-sizing: border-box; | ||
box-sizing: border-box; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
/* Clearfix hack by Nicolas Gallagher: http://nicolasgallagher.com/micro-clearfix-hack/ */ | ||
.clearfix:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
/* General Demo Style */ | ||
body { | ||
background: #e4ebe9 url(../images/fancy_deboss.png) repeat top left; | ||
color: #444; | ||
font-family: "PT Sans Narrow", Arial, sans-serif; | ||
font-size: 13px; | ||
font-weight: 400; | ||
-webkit-font-smoothing: antialiased; | ||
overflow-x: hidden; | ||
min-width: 320px; | ||
} | ||
|
||
a { | ||
color: #000; | ||
text-decoration: none; | ||
} | ||
|
||
h1, h2, h5 { | ||
margin: 20px 20px 30px 20px; | ||
font-size: 56px; | ||
color: #fff; | ||
font-family: "Volkhov", serif; | ||
text-align: center; | ||
font-weight: 700; | ||
text-shadow: 1px 1px 3px #e0d1bc; | ||
} | ||
|
||
h1 span, h5 { | ||
font-size: 18px; | ||
display: block; | ||
font-style: italic; | ||
color: #997f5a; | ||
font-weight: 400; | ||
text-shadow: 0px 1px 1px #fff; | ||
} | ||
|
||
.wrapper { | ||
position: relative; | ||
max-width: 840px; | ||
width: 100%; | ||
padding: 0 50px; | ||
margin: 0 auto; | ||
} | ||
|
||
/* Header Style */ | ||
.codrops-top { | ||
line-height: 24px; | ||
font-size: 11px; | ||
background: #fff; | ||
background: rgba(255, 255, 255, 0.8); | ||
text-transform: uppercase; | ||
z-index: 9999; | ||
position: relative; | ||
font-family: Cambria, Georgia, serif; | ||
box-shadow: 1px 0px 2px rgba(0,0,0,0.2); | ||
} | ||
|
||
.codrops-top a { | ||
padding: 0px 10px; | ||
letter-spacing: 1px; | ||
color: #333; | ||
display: inline-block; | ||
} | ||
|
||
.codrops-top a:hover { | ||
background: rgba(255,255,255,0.6); | ||
} | ||
|
||
.codrops-top span.right { | ||
float: right; | ||
} | ||
|
||
.codrops-top span.right a { | ||
float: left; | ||
display: block; | ||
} | ||
|
||
/* More examples buttons */ | ||
|
||
.more { | ||
position: relative; | ||
clear: both; | ||
padding: 20px; | ||
} | ||
|
||
.more:before { | ||
content: ""; | ||
position: absolute; | ||
background-color: #ddd1b6; | ||
box-shadow: 0 1px 0 rgba(255,255,255,0.8); | ||
height: 1px; | ||
width: 440px; | ||
left: 50%; | ||
margin-left: -220px; | ||
top: -10px; | ||
} | ||
|
||
.more ul { | ||
display: block; | ||
height: 32px; | ||
text-align: center; | ||
} | ||
|
||
.more ul li { | ||
display: inline-block; | ||
line-height: 24px; | ||
} | ||
|
||
.more ul li.selected a, | ||
.more ul li.selected a:hover { | ||
background: #ae997a; | ||
color: #fff; | ||
text-shadow: none; | ||
} | ||
|
||
.more ul li a { | ||
text-shadow: 1px 1px 1px #fff; | ||
color: #555; | ||
background: #fbf9f5; | ||
padding: 2px 5px; | ||
margin: 0 2px; | ||
line-height: 18px; | ||
display: inline-block; | ||
box-shadow: 1px 1px 2px rgba(0,0,0,0.3); | ||
} | ||
|
||
.more ul li a:hover { | ||
background: #8c795d; | ||
color: #fff; | ||
text-shadow: none; | ||
} | ||
|
||
p.info { | ||
font-family: "Volkhov", serif; | ||
font-style: italic; | ||
color: #997f5a; | ||
text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9); | ||
padding: 20px; | ||
display: block; | ||
clear: both; | ||
text-align: center; | ||
width: 100%; | ||
max-wdith: 440px; | ||
margin: 0 auto; | ||
} |
Oops, something went wrong.