GUI colors are consistent

This commit is contained in:
Marcin Kurczewski 2014-02-16 18:49:04 +01:00
parent 532fe9f7e6
commit f3a5de67e7
7 changed files with 24 additions and 13 deletions

View file

@ -47,3 +47,8 @@
.comment .delete a { .comment .delete a {
color: silver; color: silver;
} }
.comment .edit a:hover,
.comment .delete a:hover {
color: red;
}

View file

@ -73,8 +73,8 @@ body {
} }
#top-nav li.main-nav-item a:focus, #top-nav li.main-nav-item a:focus,
#top-nav li.main-nav-item a:hover { #top-nav li.main-nav-item a:hover {
color: firebrick; color: hsl(0,70%,45%);
border-bottom: 3px solid firebrick; border-bottom: 3px solid hsl(0,70%,45%);
margin-bottom: 0; margin-bottom: 0;
} }
@ -212,7 +212,7 @@ hr {
} }
a { a {
color: firebrick; color: hsl(0,70%,45%);
text-decoration: none; text-decoration: none;
outline: 0; outline: 0;
} }
@ -227,7 +227,7 @@ i[class*='icon-'] {
display: inline-block; display: inline-block;
} }
a i[class*='icon-'] { a i[class*='icon-'] {
background-color: firebrick; background-color: hsl(0,70%,45%);
} }
a:focus i[class*='icon-'], a:focus i[class*='icon-'],
a:hover i[class*='icon-'] { a:hover i[class*='icon-'] {
@ -281,11 +281,11 @@ button {
padding: 5px 15px; padding: 5px 15px;
-moz-box-sizing: border-box; -moz-box-sizing: border-box;
color: white; color: white;
background: hsl(205,70%,70%); background: hsl(0,70%,60%);
border: 0; border: 0;
} }
button:hover { button:hover {
background-color: hsl(205,70%,60%); background-color: hsl(0,75%,50%);
cursor: pointer; cursor: pointer;
} }
@ -350,7 +350,7 @@ ul.tagit input {
.tabs li a:hover, .tabs li a:hover,
.tabs li a:focus { .tabs li a:focus {
color: firebrick; color: hsl(0,70%,45%);
} }
@ -432,3 +432,9 @@ blockquote>*:first-child {
blockquote>*:last-child { blockquote>*:last-child {
margin-bottom: 0; margin-bottom: 0;
} }
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default {
color: hsla(0,70%,45%,0.8) !important;
}

View file

@ -34,6 +34,6 @@
.paginator li a:focus, .paginator li a:focus,
.paginator li a:hover { .paginator li a:hover {
border: 1px solid firebrick; border: 1px solid hsl(0,70%,50%);
background: pink; background: pink;
} }

View file

@ -63,7 +63,7 @@
.post .link:focus, .post .link:focus,
.post .link:hover { .post .link:hover {
border: 1px solid firebrick; border: 1px solid hsl(0,70%,50%);
box-shadow: 0.25em 0.25em pink; box-shadow: 0.25em 0.25em pink;
} }
.post .link:focus img.thumb, .post .link:focus img.thumb,
@ -83,7 +83,7 @@
} }
.post .info-bar:before { .post .info-bar:before {
border-top: 1px solid firebrick; border-top: 1px solid hsl(0,70%,50%);
margin-bottom: -1px; margin-bottom: -1px;
content: ''; content: '';
display: block; display: block;

View file

@ -27,7 +27,7 @@
} }
#file-handler.active { #file-handler.active {
background: #eee; background: #eee;
border-color: firebrick; border-color: hsl(0,70%,50%);
} }
#url-handler { #url-handler {

View file

@ -54,5 +54,5 @@ nav.sort-styles li {
padding-bottom: 0.2em; padding-bottom: 0.2em;
} }
nav.sort-styles li.active { nav.sort-styles li.active {
border-bottom: 3px solid firebrick; border-bottom: 3px solid hsl(0,70%,50%);
} }

View file

@ -11,7 +11,7 @@ nav.sort-styles li {
padding-bottom: 0.2em; padding-bottom: 0.2em;
} }
nav.sort-styles li.active { nav.sort-styles li.active {
border-bottom: 3px solid firebrick; border-bottom: 3px solid hsl(0,70%,50%);
} }
.users-wrapper { .users-wrapper {