Convert colors to hex

master
rnhmjoj 2015-04-21 16:13:21 +02:00
parent 2a8ec3db29
commit 5bb954aa8c
1 changed files with 13 additions and 12 deletions

View File

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