From 1dc66279b0b171b92d0a429044bc1d6185269b4c Mon Sep 17 00:00:00 2001 From: Evertton de Lima Date: Mon, 3 Jun 2013 14:14:12 -0300 Subject: [PATCH 1/5] Added theme default dark. --- README.md | 4 ++++ themes/default-dark.css | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) create mode 100644 themes/default-dark.css diff --git a/README.md b/README.md index 95d4b28f..79822f45 100644 --- a/README.md +++ b/README.md @@ -175,6 +175,10 @@ Current available themes: * hipster-gray - [preview](http://jsbin.com/ivufon/10) (by [@noformnocontent](https://github.com/noformnocontent)) * xtansia - [preview](http://jsbin.com/ereren/1/) (by [@tomass1996](https://github.com/tomass1996)) * magic-mint - [preview](http://jsbin.com/obibot/1/) (by [@ekhager](http://github.com/ekhager)) +* default dark - [preview](http://jsbin.com/uhagaw/3) (by + [@remy](http://github.com/remy), + [@raphaelbastide](http://github.com/raphaelbastide) & + [@evertton](http://github.com/evertton)) ## Formats & URLs diff --git a/themes/default-dark.css b/themes/default-dark.css new file mode 100644 index 00000000..3da9b193 --- /dev/null +++ b/themes/default-dark.css @@ -0,0 +1,20 @@ +@import url(http://fonts.googleapis.com/css?family=Inconsolata); +html { background: #1a1a1a; } +body { margin: 0; font-family: "Inconsolata", "DejaVu Sans Mono","Bitstream Vera Sans Mono", monospace; font-size: 1.2em; line-height: 1.2em; color: #999;} +article, footer { display: block; min-width: 360px; max-width: 900px; width: 80%; } +article { margin: 2.5em auto 0 auto; border: 1px solid ; border-color: #505050 #373737 #373737 #505050; padding: 2em; background: #2a2a2a; } +h1 { margin-top: 0; } +article p:first-of-type { margin-top: 1.6em; } +article p:last-child { margin-bottom: 0; } +footer { margin: 0em auto 2em auto; text-align: center; } +footer a { color: #666; text-shadow: 0 1px 1px #999; text-decoration:none; font-size:.8em; padding: 1em; } +/*footer a:before{content: "â¦"; font-size:1.5em; padding-right:.2em; } */ +footer a:hover, footer a:focus { color: white; } +h1 {font-weight:normal; display:inline; border-bottom:1px solid #999; padding:0 0 3px 0; line-height: 36px; } +a { color:#0520cf; text-decoration:none;} +a:hover, a:focus { color:#2844FA; } +a:active { color:white; } +:-moz-any-link:focus {color:#000; border:0;} +::selection {background:#ccc;} +::-moz-selection {background:#ccc;} +#gravatar{position:relative;float:right; margin-bottom: 1em; margin-left: 1em; border: 1px solid #999;} \ No newline at end of file From c7d4765f6f1f2abd8388335cb646493a7041efde Mon Sep 17 00:00:00 2001 From: Evertton de Lima Date: Mon, 3 Jun 2013 21:42:29 -0300 Subject: [PATCH 2/5] Added theme black beauty. --- README.md | 1 + themes/black-beauty.css | 98 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 themes/black-beauty.css diff --git a/README.md b/README.md index 79822f45..86245066 100644 --- a/README.md +++ b/README.md @@ -179,6 +179,7 @@ Current available themes: [@remy](http://github.com/remy), [@raphaelbastide](http://github.com/raphaelbastide) & [@evertton](http://github.com/evertton)) +* black beauty - [preview](http://jsbin.com/efujux/22) (by [@evertton](http://github.com/evertton)) ## Formats & URLs diff --git a/themes/black-beauty.css b/themes/black-beauty.css new file mode 100644 index 00000000..17a6b1be --- /dev/null +++ b/themes/black-beauty.css @@ -0,0 +1,98 @@ +@import url(http://fonts.googleapis.com/css?family=Lato:300); + +html { + font-size: 16px; + background-color: #1a1a1a; +} + +body { + font-family: "Lato", Helvetica, Arial, sans-serif; + font-size: 1.3em; + font-weight: 300; + color: #999; +} + +article, footer { + max-width: 900px; + margin-left: auto; + margin-right: auto; + text-align: center; +} + +article { + margin-top: 2em; + background-color: #2a2a2a; + padding: 2em; + text-align: center; + position: relative; +} + +article p { + text-align: justify; +} + +article p:first-of-type { + text-align: center; +} + +#gravatar { + border: 5px solid #999; + border-radius: 5px; + width: 70px; + position: absolute; + top: 2em; + left: 2em; +} + +h1 { + font-size: 2.5em; + font-weight: 300; + text-transform: uppercase; + display: inline-block; + padding-bottom: 12px; + border-bottom: 2px dashed #999; + margin: 0; +} + +a { + color: #ff6666; + text-decoration: none; + word-wrap: break-word; +} + +a:hover, a:focus, a:active { + color: white; +} + +@media screen and (max-width: 768px) { + article { + margin-top: 5px; + } + + h1 { + font-size: 2em; + margin-left: 80px; + } +} + +@media screen and (max-width: 320px) { + article { + padding: 1em; + } + + article p { + text-align: left; + } + + #gravatar { + position: relative; + top: 0; + left: 0; + right: 0; + } + + h1 { + margin: 0; + font-size: 1.5em; + } +} \ No newline at end of file From 96babd603ce8684bb949e43c396aee18d3042ab0 Mon Sep 17 00:00:00 2001 From: Evertton de Lima Date: Mon, 3 Jun 2013 21:44:53 -0300 Subject: [PATCH 3/5] Updated user/evertton.json. --- users/evertton.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/evertton.json b/users/evertton.json index 25b6d710..573f8cd7 100644 --- a/users/evertton.json +++ b/users/evertton.json @@ -3,5 +3,5 @@ "email": "e.everttonlima@gmail.com", "format": "html", "gravatar": true, - "theme": "xtansia" + "theme": "black-beauty" } From 2171c01c0751018f5ada94419fbd13a41250be9a Mon Sep 17 00:00:00 2001 From: Mohammad Shokri Date: Tue, 4 Jun 2013 09:23:54 +0430 Subject: [PATCH 4/5] Fixed Gravatar Support --- users/slashsbin.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/users/slashsbin.json b/users/slashsbin.json index a120fc9c..f898bf53 100644 --- a/users/slashsbin.json +++ b/users/slashsbin.json @@ -1 +1 @@ -{"copyright":"Mohammad Shokri","url":"http:\/\/slashsbin.com","email":"shokri.md@gmail.com","gravatar":"true"} +{"copyright":"Mohammad Shokri","url":"http:\/\/slashsbin.com","email":"shokri.md@gmail.com","gravatar":true} From d16b0ba88e1a7082a10bc1c5785baa0d54dd7ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Magno=20Bi=C3=A9t?= Date: Tue, 4 Jun 2013 11:38:07 -0300 Subject: [PATCH 5/5] Added users/magno.json --- users/magno.json | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 users/magno.json diff --git a/users/magno.json b/users/magno.json new file mode 100644 index 00000000..06426e7c --- /dev/null +++ b/users/magno.json @@ -0,0 +1,6 @@ +{ + "copyright": "Magno Biét", + "url": "http:\/\/magnobiet.com", + "email": "eu@magnobiet.com", + "gravatar": true +} \ No newline at end of file