web: Strip down CSS

This commit is contained in:
Stein Magnus Jodal 2014-06-21 17:38:21 +02:00
parent 97efcdc019
commit 0e2b396be4

View File

@ -1,5 +1,5 @@
html { html {
background: #e8ecef; background: #f8f8f8;
color: #555; color: #555;
font-family: Geneva, Tahoma, Verdana, sans-serif; font-family: Geneva, Tahoma, Verdana, sans-serif;
line-height: 1.4em; line-height: 1.4em;
@ -8,28 +8,9 @@ body {
max-width: 600px; max-width: 600px;
margin: 0 auto; margin: 0 auto;
} }
div.box {
background: white;
border-radius: 5px;
box-shadow: 5px 5px 5px #d8dcdf;
margin: 1em;
padding: 1em;
}
div.box.focus {
background: #465158;
color: #e8ecef;
}
div.icon {
float: right;
}
h1 {
line-height: 1.1em;
}
h1, h2 { h1, h2 {
font-weight: 500; font-weight: 500;
} line-height: 1.1em;
p.next {
text-align: right;
} }
a { a {
color: #555; color: #555;
@ -39,19 +20,18 @@ a {
img { img {
border: 0; border: 0;
} }
code, pre {
font-family: monospace; .box {
line-height: 1.2em; background: white;
padding: 0.8em 1em; box-shadow: 0px 5px 5px #f0f0f0;
margin: 1em 0; margin: 1em;
white-space: pre; padding: 1em;
overflow: auto;
} }
.box code, .box.focus {
.box pre { background: #465158;
background: #e8ecef; color: #e8ecef;
color: #555;
} }
.box a { .box a {
color: #465158; color: #465158;
} }
@ -61,10 +41,3 @@ code, pre {
.box.focus a { .box.focus a {
color: #e8ecef; color: #e8ecef;
} }
.center {
text-align: center;
}
#ws-console {
height: 200px;
overflow: auto;
}