Convert colors to hex

This commit is contained in:
rnhmjoj 2015-04-21 16:13:21 +02:00
parent 2a8ec3db29
commit 5bb954aa8c

View File

@ -5,8 +5,8 @@ html, body { overflow: hidden }
body, input { font-size: 1.1em } body, input { font-size: 1.1em }
body { body {
background-color: rgb(24,27,32); background-color: #181b20;
color: rgb(155,144,129); color: #9b9081;
font-family: Inconsolata; font-family: Inconsolata;
} }
@ -38,7 +38,8 @@ footer {
left: 0; left: 0;
padding: 1em; padding: 1em;
font-size: .9em; font-size: .9em;
color: rgb(89,84,80) color: #595450;
padding: 1em;
} }
footer span { footer span {
@ -50,10 +51,11 @@ h1 {
margin: 1em 0 0 1em; margin: 1em 0 0 1em;
font-size: 1.8em; font-size: 1.8em;
font-weight: 700; font-weight: 700;
color: rgb(81,94,102); color: #515e66;
margin: 1em 0 0 1em;
} }
h1 a { color: rgb(81,94,102) !important} h1 a { color: #515e66 !important }
h2 { h2 {
font-size: 1.2em; font-size: 1.2em;
@ -62,28 +64,27 @@ h2 {
input[type="text"] { input[type="text"] {
border: none; border: none;
border-bottom: .15em dashed rgb(43,44,46); border-bottom: .15em dashed #2b2c2e;
outline: none; outline: none;
background: transparent; background: transparent;
color: rgb(119,96,73); color: #776049;
padding: 0 2px; padding: 0 2px;
} }
input[type="submit"] { input[type="submit"] {
border: .12em solid rgb(43,44,46); border: .12em solid #2b2c2e;
padding: .2em .4em !important;
background: transparent; background: transparent;
color: rgb(119,87,80); color: #775750;
cursor: pointer; cursor: pointer;
} }
a:link, a:visited { a:link, a:visited {
color: rgb(119,96,73); color: #776049;
text-decoration: none; text-decoration: none;
} }
a:hover { a:hover {
text-decoration: underline; text-decoration: underline;
transition: color .5s ease; transition: color .5s ease;
color: rgb(119,87,80); color: #775750;
} }