mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-03-29 10:05:49 +00:00
Merge branch 'master' of github.com:remy/mit-license
This commit is contained in:
commit
658de87239
6 changed files with 131 additions and 2 deletions
|
|
@ -175,6 +175,11 @@ 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))
|
||||
* black beauty - [preview](http://jsbin.com/efujux/22) (by [@evertton](http://github.com/evertton))
|
||||
|
||||
## Formats & URLs
|
||||
|
||||
|
|
|
|||
98
themes/black-beauty.css
Normal file
98
themes/black-beauty.css
Normal file
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
20
themes/default-dark.css
Normal file
20
themes/default-dark.css
Normal file
|
|
@ -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;}
|
||||
|
|
@ -3,5 +3,5 @@
|
|||
"email": "e.everttonlima@gmail.com",
|
||||
"format": "html",
|
||||
"gravatar": true,
|
||||
"theme": "xtansia"
|
||||
"theme": "black-beauty"
|
||||
}
|
||||
|
|
|
|||
6
users/magno.json
Normal file
6
users/magno.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"copyright": "Magno Biét",
|
||||
"url": "http:\/\/magnobiet.com",
|
||||
"email": "eu@magnobiet.com",
|
||||
"gravatar": true
|
||||
}
|
||||
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Reference in a new issue