Skip to content

Commit

Permalink
Theme alteration
Browse files Browse the repository at this point in the history
Changed the colors to make it more subtle (as per user comments)
  • Loading branch information
mr-alien committed Nov 17, 2014
1 parent b045100 commit 43e57b4
Show file tree
Hide file tree
Showing 3 changed files with 915 additions and 18 deletions.
54 changes: 42 additions & 12 deletions public/style/main.css
Expand Up @@ -16,12 +16,12 @@
/* Text Highlight Color */ /* Text Highlight Color */
::-moz-selection { ::-moz-selection {
color: #fff; color: #fff;
background: #E74C3C; background: #34495E;
} }


::selection { ::selection {
color: #fff; color: #fff;
background: #E74C3C; background: #34495E;
} }


/* Custom Scrollbars for Chrome */ /* Custom Scrollbars for Chrome */
Expand Down Expand Up @@ -97,16 +97,16 @@ input[type="search"] {
padding: 6px 15px; padding: 6px 15px;
background-color: transparent; background-color: transparent;
font-size: 12px; font-size: 12px;
color: #E74C3C; color: #34495E;
margin-top: 20px; margin-top: 20px;
border: 1px solid #E74C3C; border: 1px solid #34495E;
float: right; float: right;
margin-right: 30px; margin-right: 30px;
cursor: pointer; cursor: pointer;
} }


#login input[type=submit]:not([disabled]):hover { #login input[type=submit]:not([disabled]):hover {
background-color: #E74C3C; background-color: #34495E;
color: #fff; color: #fff;
} }


Expand Down Expand Up @@ -149,7 +149,7 @@ header {
position: fixed; position: fixed;
width: 100%; width: 100%;
top: 0; top: 0;
background-color: #e74c3c; background-color: #34495e;
z-index: 999; z-index: 999;
} }


Expand Down Expand Up @@ -177,7 +177,7 @@ header nav ul li:last-child {
#logo { #logo {
width: 220px; width: 220px;
text-align: center; text-align: center;
background-color: #db3e30; background-color: #2c3e50;
font-size: 25px; font-size: 25px;
text-transform: none; text-transform: none;
transition: font-size .5s; transition: font-size .5s;
Expand All @@ -187,11 +187,11 @@ header nav ul li:last-child {
display: block; display: block;
height: 100%; height: 100%;
width: 100%; width: 100%;
color: #770900; color: #657b91;
} }


#logo span { #logo span {
color: #96251b; color: #4b6075;
} }


#logo sup { #logo sup {
Expand Down Expand Up @@ -308,7 +308,7 @@ aside nav ul li span.fa {
/* Sub Navigation Active */ /* Sub Navigation Active */
.sna, .sna,
#sub-nav ul li a:hover { #sub-nav ul li a:hover {
color: #E74C3C; color: #34495E;
} }




Expand Down Expand Up @@ -381,7 +381,7 @@ aside nav ul li a:hover {
#status-tabs .data-block h2, #status-tabs .data-block h2,
#graphs h2 { #graphs h2 {
font-size: 14px; font-size: 14px;
color: #E74C3C; color: #34495E;
padding: 20px 0; padding: 20px 0;
padding-bottom: 10px; padding-bottom: 10px;
font-weight: 400; font-weight: 400;
Expand Down Expand Up @@ -442,7 +442,7 @@ aside nav ul li a:hover {


#cached-scripts-tabs table p a:hover, #cached-scripts-tabs table p a:hover,
#cached-scripts-tabs .csat { /* Cached Scripts Active Tab */ #cached-scripts-tabs .csat { /* Cached Scripts Active Tab */
color: #E74C3C; color: #34495E;
} }


.cs-data-table { .cs-data-table {
Expand Down Expand Up @@ -583,6 +583,36 @@ aside nav ul li a:hover {






/* Search Filter Styles */
input[type=search][name=filter] {
font-weight: 300;
color: #aaa;
padding: 10px 5px;
font-family: inherit;
}

input[type=search][name=filter]:focus {
color: #515151;
}

input[type=search][name=filter]::-webkit-input-placeholder {
font-weight: 300;
font-family: Open Sans;
color: #ccc;
}


/*#login input[type=text]:focus::-moz-placeholder,
#login input[type=password]:focus::-moz-placeholder {
opacity: .4;
}
#login input[type=text]:-ms-input-placeholder,
#login input[type=password]:-ms-input-placeholder {
opacity: .4;
}*/








Expand Down

0 comments on commit 43e57b4

Please sign in to comment.