summaryrefslogtreecommitdiff
path: root/sass/demo.scss
diff options
context:
space:
mode:
Diffstat (limited to 'sass/demo.scss')
-rw-r--r--sass/demo.scss121
1 files changed, 0 insertions, 121 deletions
diff --git a/sass/demo.scss b/sass/demo.scss
deleted file mode 100644
index e2e345a..0000000
--- a/sass/demo.scss
+++ /dev/null
@@ -1,121 +0,0 @@
-body {
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
-}
-
-#container {
- margin: 50px auto 100px;
- padding: 0 20px;
- text-align: center;
- width: 700px;
-
- img {
- border: .625em solid rgba(255, 255, 255, .5);
- // border-color: #eee;
-
- -moz-box-shadow: 0 0 .313em rgba(0, 0, 0, .05);
- -webkit-box-shadow: 0 0 .313em rgba(0, 0, 0, .05);
- box-shadow: 0 0 .313em rgba(0, 0, 0, .05);
- height: 8.75em;
-
- -moz-transition: -moz-box-shadow .3s ease, border-color .3s ease;
- -ms-transition: -ms-box-shadow .3s ease, border-color .3s ease;
- -o-transition: -o-box-shadow .3s ease, border-color .3s ease;
- -webkit-transition: -webkit-box-shadow .3s ease, border-color .3s ease;
- transition: box-shadow .3s ease, border-color .3s ease;
- width: 8.75em;
-
- &:hover {
- border-color: #fff;
-
- -moz-box-shadow: 0 0 .938em rgba(0, 0, 0, .25);
- -webkit-box-shadow: 0 0 .938em rgba(0, 0, 0, .25);
- box-shadow: 0 0 .938em rgba(0, 0, 0, .25);
- }
- }
-}
-
-h1 {
- font-size: 37px;
- line-height: .882em;
- text-transform: uppercase;
-
- span {
- color: #aaa;
- display: block;
- font-size: .588em;
- line-height: 1em;
- }
-
- &:hover {
- color: #666;
-
- span {
- color: #666;
- }
- }
-}
-
-h2 {
- border-top: 1px solid #ddd;
- margin-bottom: 15px;
- margin-top: 45px;
- padding-top: 45px;
-
- span {
- color: #666;
- }
-}
-
-li {
- display: inline-block;
- margin: .625em;
-}
-
-footer {
- border-top: 1px solid #ddd;
- color: #aaa;
- font-size: .875em;
- margin-top: 2.143em;
- padding-top: 2.143em;
-
- a {
- color: #666;
- }
-}
-
-
-#fork-button {
- display: none;
-}
-
-@media only screen and (max-width: 660px) {
- #container {
- width: 90%;
-
- &:before,
- &:after {
- content: ' ';
- display: table;
- }
- }
-
- #fork-ribbon {
- display: none;
- }
-
- #fork-button {
- display: inline-block;
- }
-
- h1 {
- margin-bottom: 5px;
- }
-
- h2:first-of-type {
- margin-top: 30px;
- }
-}
-
-ul {
- padding: 0;
-}