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
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
/* Text Highlight Color */
::-moz-selection {
color: #fff;
background: #E74C3C;
background: #34495E;
}

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

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

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

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

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

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

#logo sup {
Expand Down Expand Up @@ -308,7 +308,7 @@ aside nav ul li span.fa {
/* Sub Navigation Active */
.sna,
#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,
#graphs h2 {
font-size: 14px;
color: #E74C3C;
color: #34495E;
padding: 20px 0;
padding-bottom: 10px;
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 .csat { /* Cached Scripts Active Tab */
color: #E74C3C;
color: #34495E;
}

.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
Loading

0 comments on commit 43e57b4

Please sign in to comment.