clean and bright styling

This commit is contained in:
Koen Lageveen 2017-07-29 17:40:29 +02:00
parent 445cf0d8f5
commit 25cc65dbc6
3 changed files with 61 additions and 53 deletions

View File

@ -4,13 +4,14 @@ html {
background: #f5f0e6;
}
body {
color: #fff;
color: var(--foreground);
background: #222;
background: var(--background);
font-family: "Input Mono", sans-serif;
font-size: 12px;
line-height: 1.6;
color: #2a2a2a;
background: #f5f5f5;
font-family: -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif;
font-size: 14px;
line-height: 20px;
height: 100%;
min-height: 100%;
font-weight: 300;
@ -18,7 +19,7 @@ body {
h1 {
text-align: center;
font-weight: 700;
font-size: 1.618em;
font-size: 1.414em;
margin: 0;
padding: .25em 0 0 0;
}
@ -35,32 +36,34 @@ a:active {
}
.octicon {
fill: currentcolor;
vertical-align: middle;
}
article {
float: left;
border: 1px solid rgba(0,0,0,.2);
border-right: 1px solid #4a4a4a;
height: 100%;
width: 34em;
background: rgba(255,255,255,.05);
width: 28em;
display: flex;
flex-direction: column;
}
section {
flex: 1;
flex-shrink: 0;
min-height: 1.6em;
padding: .5em 1em;
border-bottom: 1px solid rgba(0,0,0,.1);
}
section.config {
border-top: 1px solid rgba(255,255,255,.1);
background: rgba(255,255,255,.05);
min-height: 20px;
font-size: 10px;
background: #eee;
flex: 0;
padding: 0.5em 1em;
padding: 10px 10px 0 10px;
display: flex;
flex-direction: row;
}
section.config:last-of-type {
padding-bottom: 10px;
}
section.config + section.config {
padding-top: 0;
}
section.config > * {
flex: 1;
text-align: center;
@ -72,39 +75,57 @@ section.select-list {
section.select-list .entry {
display: flex;
flex-direction: row;
padding: .5em 1em;
}
section.select-list .entry:hover {
background: #fff;
}
section.select-list a[data-value] {
flex: 1;
display: block;
padding-bottom: .5em;
position: relative;
overflow: hidden;
}
section.select-list a:hover .name,
section.select-list a:active .name {
text-decoration: underline;
}
section.select-list .active .name {
font-weight: bold;
}
section.select-list a[rel="external"] {
position: relative;
opacity: 0;
transition: all .2s ease-in-out;
flex: 0;
}
section.select-list .entry:hover a[rel="external"] {
opacity: .5;
}
section.select-list .entry a[rel="external"]:hover,
section.select-list .entry a[rel="external"]:active {
opacity: 1;
}
section.select-list .entry a[rel="external"]:active {
top: 1px;
}
section.select-list .details {
opacity: .6;
font-style: italic;
display: block;
font-size: .8em;
font-size: 10px;
text-indent: 2em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
footer {
flex: 0;
padding: 0.5em 1em 1em 1em;
padding: 10px 0;
text-align: center;
font-size: .8em;
border-top: 1px solid rgba(255,255,255,.1);
opacity: .6;
background: rgba(255,255,255,.05);
font-size: 10px;
background: #e4e4e4;
color: #777;
}
footer a:hover,
footer a:active {
@ -113,23 +134,26 @@ footer a:active {
#font-info p {
display: none;
}
#font-info a,
#font-info a:link,
#font-info a:visited {
#font-info a.button,
#font-info a.button:link,
#font-info a.button:visited {
position: relative;
background: var(--foreground);
color: var(--background);
background: #e4e4e4;
color: #777;
display: inline-block;
padding: 0 1em;
padding: 0 1ex;
border-radius: 3px;
font-size: 14px;
line-height: 22px;
margin-top: 2px;
}
#font-info a:active {
#font-info a.button:active {
top: 1px;
}
label {
margin-right: .5ex;
font-style: italic;
opacity: .6;
color: #777;
}
select {
all: unset;
@ -152,14 +176,13 @@ input[type="number"] {
margin-left: .5ex;
padding: 0 .5ex;
border: 1px solid transparent;
border-radius: 3px;
text-align: left;
}
input[type="number"]:hover,
input[type="number"]:focus,
select:hover,
select:focus {
border-color: rgba(100,100,100,.5);
border-color: #e4e4e4;
}
pre,
textarea,

View File

@ -95,9 +95,6 @@
<!-- filled from json -->
</div>
</section>
<section class="config">
<div id="font-info"></div>
</section>
<section class="config">
<p>
<label for="size">Size</label>

View File

@ -9,10 +9,6 @@ var editor = CodeMirror.fromTextArea(document.getElementById("code"), {
lineWrapping: true
});
function applyColors() {
$("body").attr("style" ,"--foreground:" + $(".CodeMirror").css("color") + "; --background:" + $(".CodeMirror").css("background-color") + ";");
}
// CodeMirror theme selector
var input = document.getElementById("select-theme");
function selectTheme() {
@ -23,7 +19,6 @@ function selectTheme() {
}
editor.setOption("theme", theme);
document.cookie = "theme=" + theme + ";max-age=172800";
applyColors();
}
// ProgrammingFonts font selector
@ -39,9 +34,8 @@ function selectFont() {
$("textarea").css({ fontFamily: font + ", monospace" });
$(".CodeMirror").css({ fontFamily: font + ", monospace" });
}
$("#font-info p").hide();
$("#font-info ." + font).show();
$("#select-font a[data-value]").removeClass("active");
$("#select-font a[data-value='" + font + "']").addClass("active");
document.cookie = "font=" + font + ";max-age=172800";
}
@ -100,13 +94,12 @@ $(document).ready(function(){
}
selectTheme();
applyColors();
setSize();
setSpacing();
setAntialiasing();
selectLanguage();
var icon = '<svg class="octicon" viewBox="0 0 12 16" version="1.1" width="12" height="16" aria-hidden="true"><path fill-rule="evenodd" d="M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z"></path></svg>'
var icon = '<svg class="octicon" viewBox="0 0 12 14" version="1.1" width="12" height="14" aria-hidden="true"><path fill-rule="evenodd" d="M11 10h1v3c0 .55-.45 1-1 1H1c-.55 0-1-.45-1-1V3c0-.55.45-1 1-1h3v1H1v10h10v-3zM6 2l2.25 2.25L5 7.5 6.5 9l3.25-3.25L12 8V2H6z"></path></svg>'
$.getJSON("fonts.json", function(data) {
$.each(data, function(k,v) {
@ -117,11 +110,6 @@ $(document).ready(function(){
"</a>" +
"<a href='" + v.website + "' rel=external> " + icon + "</a></div>"
);
$("#font-info").append(
"<p class=\"" + v.alias + "\"> " +
"<a href=\""+ v.website + "\" rel=\"external\">Get " + v.name + " " + icon + "</a>" +
"</p>"
);
});
selectFont();
});