Autohide the header of the google keep interface for a more sleek design.
Hover over the top to make it appear again!
Google keep autohide header by bliwi
Details
Authorbliwi
LicenseZero
Categorykeep.google.com
Created
Updated
Size489 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
If you have any other websites you would like me to create compact versions for, feel free to hit me up on my twitter, @blwh_design.
Source code
/* ==UserStyle==
@name Google keep autohide
@version 1
@namespace userstyles.world/user/bliwi
@description Autohides the header for you!
@author bliwi
@license No License
@-moz-document domain("keep.google.com") {
#ognwrapper{
z-index:100 !important;
transform: translate(0,-55px);
transition: 0.3s;
height: 5px;
opacity: 40%;
}
#ognwrapper:hover{
transform: translate(0,0);
height:100px;
opacity: 100%;
}
}