mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-03-25 09:25:49 +00:00
105 lines
1.4 KiB
CSS
105 lines
1.4 KiB
CSS
@import url(https://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: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;
|
|
}
|
|
|
|
#gravatar {
|
|
position: relative;
|
|
float: right;
|
|
margin-bottom: 1em;
|
|
margin-left: 1em;
|
|
border: 1px solid #999;
|
|
}
|
|
|
|
@media all and (max-width: 500px) {
|
|
article {
|
|
padding: 1em;
|
|
}
|
|
|
|
body {
|
|
font-size: 1em;
|
|
}
|
|
}
|