Skip to content

Commit

Permalink
Removed helvetireader text from top left
Browse files Browse the repository at this point in the history
  • Loading branch information
ankit committed Mar 20, 2010
1 parent e292bcb commit 679f311
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 17 deletions.
39 changes: 23 additions & 16 deletions helvetireader.css
Expand Up @@ -12,8 +12,7 @@ Helvetireader: A New Flavor

/* Anything to to hide? */
#logo,.gbh, .star {display: none !important;}
/*#gbar nobr, #guser * { display:none }*/
/*#gbar:hover nobr, #guser:hover * { display: inline;}*/

#guser{
padding-bottom:0px !important;
}
Expand All @@ -22,13 +21,13 @@ Helvetireader: A New Flavor
}
#guser a, #guser{
font-size: 10px !important;
color:#ccc !important; text-decoration: none !important;border: none !important;
color:#ccc !important;
text-decoration: none !important;
border: none !important;
}
#guser a:hover{
color: #333 !important;
color: #ccc !important;
}
/*#guser { color: #f4f4f4 !important; }*/
/*#guser:hover { color: #999 !important; }*/

/* Get rid of all unwanted borders and backgrounds */
#chrome-header,
Expand Down Expand Up @@ -106,15 +105,15 @@ a:hover .tree-item-action-container,.scroll-tree li a.menu-open,
#nav {margin: 0 0 0 12px !important; width: 240px !important;}
#nav li, #nav div {font-size: 12px !important;}

#nav:before {
/*#nav:before {
content:"helvetireader";
display: block;
margin: -28px 0 50px 25px;
color: #90a0cb;
letter-spacing:3px;
font-size: 12px;
font-weight: bold;
}
}*/

.subscribe-button {
margin: 0 0 0 10px !important;
Expand Down Expand Up @@ -228,20 +227,21 @@ a#sub-tree-subscriptions,
#search {
margin: 0!important;
left: 35px !important;
top: 80px !important;
top: 40px !important;
}

#search-input {
border: 1px solid #ddd !important;
font-size:11px;
color: #aaa;
padding: 1px;
height: 8px !important;
-webkit-border-radius: 10px;
outline: none;
width: 200px !important;
}

#chrome { margin: -50px 0 10px 245px !important;}
#chrome { margin: -45px 0 10px 245px !important;}

/* @end */

Expand Down Expand Up @@ -411,13 +411,15 @@ div.goog-menu, div.goog-menu-vertical{
/* @end */

#HelvetiThemeSwitcher{
position: absolute;
top: 37px;
left: 170px;
display: inline;
margin-right: 3px;
cursor:pointer;
font-style: italic;
font-size:11px;
color: #aaa;
border-right: 1px solid #ccc;
padding-right: 2px;
font-weight: bold;
/*font-style: italic;*/
font-size:10px;
color: #ccc;
}
/* @end */

Expand Down Expand Up @@ -568,6 +570,11 @@ div.goog-menu, div.goog-menu-vertical{
background-color: #201c1c !important;
color: #fff !important;
}

body.HelvetiNight #search-input{
background-color: #4f4545 !important;
border-color:#453e3e !important;
}
/* @end */

.entry-author a:hover{
Expand Down
3 changes: 2 additions & 1 deletion helvetireader.js
Expand Up @@ -55,7 +55,8 @@ function addThemeSwitchLink(){
var newDiv = document.createElement("div");
newDiv.innerHTML = "";
newDiv.id = "HelvetiThemeSwitcher";
document.body.appendChild(newDiv);
var guser = document.getElementById("guser");
guser.insertBefore(newDiv,guser.firstChild);
newDiv.addEventListener("click",function(e){
if(currentHelvetiTheme == "day")
switchHelvetiTheme("night");
Expand Down

0 comments on commit 679f311

Please sign in to comment.