mirror of
https://github.com/samsonjs/mit-license.git
synced 2026-04-24 14:37:46 +00:00
theme: EULA-modern: responsive-fixes, reformatting; users: +sauerlo
This commit is contained in:
parent
1ce0c7978a
commit
a8c18ed026
3 changed files with 94 additions and 57 deletions
|
|
@ -1,5 +1,4 @@
|
|||
/*@import url(http://fonts.googleapis.com/css?family=Dosis:400,400italic);*/
|
||||
|
||||
/*author: lo sauer, 2013 - http://github.com/lsauer, @sauerlo */
|
||||
* {
|
||||
scrollbar-base-color: white;
|
||||
scrollbar-track-color: white;
|
||||
|
|
@ -9,96 +8,126 @@
|
|||
scrollbar-shadow-color: #bec1c4;
|
||||
scrollbar-highlight-color: #bec1c4;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 8px;
|
||||
height: 8px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background: #888;
|
||||
border-radius: 8px;
|
||||
border:1px solid rgba(0,0,0,0.3);
|
||||
box-shadow: -3px -3px 6px rgba(180,180,160,.5) inset,3px 3px 3px rgba(226,226,225,.5) inset;
|
||||
background: #888;
|
||||
border-radius: 8px;
|
||||
border:1px solid rgba(0,0,0,0.3);
|
||||
box-shadow: -3px -3px 6px rgba(180,180,160,.5) inset, 3px 3px 3px rgba(226,226,225,.5) inset;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background:#FBFBFB;
|
||||
box-shadow: 3px 3px 10px rgba(0,0,0,.25) inset;
|
||||
background:#fbfbfb;
|
||||
box-shadow: 3px 3px 10px rgba(0,0,0,.25) inset;
|
||||
}
|
||||
|
||||
|
||||
body {
|
||||
font-family: Segoe UI, 'SegoeUIWF',Arial,sans-serif;
|
||||
padding: 10px;
|
||||
line-height: 1.5em;
|
||||
font-family: Segoe UI, 'SegoeUIWF',Arial,sans-serif;
|
||||
padding: 10px;
|
||||
line-height: 1.5em;
|
||||
}
|
||||
|
||||
article {
|
||||
color: #444444;
|
||||
max-width: 700px;
|
||||
margin: 10px auto 0;
|
||||
text-align: justify;
|
||||
color: #444;
|
||||
max-width: 700px;
|
||||
margin: 10px auto 0px;
|
||||
text-align: justify;
|
||||
}
|
||||
|
||||
@media (max-device-height: 699px) {
|
||||
article {
|
||||
max-width: none !important;
|
||||
margin: 8px 8px !important;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 4.2em;
|
||||
font-family: Segoe UI Light,'SegoeUILightWF',Arial,sans-serif;
|
||||
color: #000;
|
||||
padding: 0px;
|
||||
font-weight: normal;
|
||||
clear: both;
|
||||
font-size: 4.2em;
|
||||
font-family: Segoe UI Light,'SegoeUILightWF',Arial,sans-serif;
|
||||
line-height: .9em;
|
||||
color: #000;
|
||||
padding: 0px;
|
||||
font-weight: normal;
|
||||
clear: both;
|
||||
margin: .2em auto .4em;
|
||||
}
|
||||
|
||||
article p:nth-of-type(1) { background: #666;
|
||||
color: white;
|
||||
border: none;
|
||||
border-top: 1px solid #EEE;
|
||||
margin-top: 0;
|
||||
padding: .3em .3em;
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
font-size: 1.05em;
|
||||
color: white;
|
||||
border: none;
|
||||
border-top: 1px solid #eee;
|
||||
margin-top: 0;
|
||||
padding: .3em .3em;
|
||||
font-style: normal;
|
||||
text-align: center;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
|
||||
article p:last-child {
|
||||
line-height: 26px;
|
||||
padding-left: 15px;
|
||||
border-width: 0px 0px 0px 3px;
|
||||
border-style: solid;
|
||||
padding-bottom: 1.3em;
|
||||
margin-bottom: 0.0em;
|
||||
font-size: 0.9em;
|
||||
line-height: 26px;
|
||||
padding-left: 15px;
|
||||
border-width: 0px 0px 0px 3px;
|
||||
border-style: solid;
|
||||
padding-bottom: 1.3em;
|
||||
margin-bottom: 0.0em;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
a {
|
||||
padding: 0.1em;
|
||||
padding: 0.1em;
|
||||
}
|
||||
|
||||
a:link,
|
||||
a:visited {
|
||||
text-decoration: none;
|
||||
color: #666;
|
||||
border: none;
|
||||
text-decoration: none;
|
||||
color: #666;
|
||||
border: none;
|
||||
transition: all 1s;
|
||||
padding: 1px;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
background: #666;
|
||||
color: white;
|
||||
border: none;
|
||||
background: #666;
|
||||
color: white;
|
||||
border: none;
|
||||
transition: all 1s;
|
||||
}
|
||||
|
||||
article a:link {
|
||||
color: #fff;
|
||||
background: #666;
|
||||
article a:link,
|
||||
article a:visited {
|
||||
color: #fff;
|
||||
background: #666;
|
||||
}
|
||||
|
||||
a:active {
|
||||
background: #999;
|
||||
background: #999;
|
||||
}
|
||||
|
||||
footer {
|
||||
border-top: 1px solid #EEE;
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
max-width: 660px;
|
||||
margin: 0 auto;
|
||||
margin-top: 5px;
|
||||
font-style: italic;
|
||||
border-top: 1px solid #eee;
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
max-width: 660px;
|
||||
margin: 0 auto;
|
||||
margin-top: 5px;
|
||||
font-style: italic;
|
||||
}
|
||||
#gravatar { position: relative; float: right; border: 3px solid #CCCCCC; top: -4.3em; z-index: 1; border-radius: 10px; }
|
||||
|
||||
footer a:link,
|
||||
footer a:visited {
|
||||
color:#ccc;
|
||||
}
|
||||
|
||||
#gravatar {
|
||||
position: relative;
|
||||
float: right;
|
||||
border: 3px solid #ccc;
|
||||
top: -4.3em;
|
||||
z-index: 1;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
|
@ -3,6 +3,6 @@
|
|||
"url": "http://www.lsauer.com",
|
||||
"format": "html",
|
||||
"email": "lorenz.lo.sauer@gmail.com",
|
||||
"gravatar": false,
|
||||
"gravatar": true,
|
||||
"theme": "eula-modern"
|
||||
}
|
||||
|
|
|
|||
8
users/sauerlo.json
Normal file
8
users/sauerlo.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"copyright": "Lorenz Lo Sauer, https://www.lsauer.com",
|
||||
"url": "http://www.lsauer.com",
|
||||
"format": "html",
|
||||
"email": "lorenz.lo.sauer@gmail.com",
|
||||
"gravatar": true,
|
||||
"theme": "eula-modern"
|
||||
}
|
||||
Loading…
Reference in a new issue