/* ==UserStyle==
@name Google on Glass by osirisgothra (osirisgothra@hotmail.com)
@version 20230501.13.30
@namespace userstyles.world/user/osirisgothra
@description Just a simple style to nice-ify the google search results
and related iframe windows.
This is intended for dark mode, so if you dont use dark mode
you may not want this. Also, (Chromium) experimental dark mode
should be enabled too for it to look proper. If you experience any bugs are need a fix, just e-mail me.
@author osirisgothra
@license public domain share alike fallback
==/UserStyle== */
@-moz-document domain("google.com") {
/*
GoogleOnGlass 1.1 final
A minimalistic theme by Gabriel T. Sharp (osirisgothra@hotmail.com) 5/1/23 Public Domain
see end for rulebreaks
*/
body
{
padding-bottom: 20px !important;
}
.sfbg
{
background-color: transparent !important;
background-image: linear-gradient(4deg, rgba(40, 40, 40, 0.35), rgba(237, 237, 237, .65)) !important;
box-shadow: rgba(0, 0, 0, .11) 0px 13px !important;
backdrop-filter: blur(2px) !important;
}
#rcnt *, #rcnt
{
background: transparent;
}
#bfoot::after
{
text-align: center !important;
content: "";
width: -moz-fill-available !important;
width: -webkit-fill-available !important;
/*
text could be here:
font-size: x-large;
content: "Your company logo here" !important;
*/
position: fixed;
display: block;
float: none;
bottom: 0px;
left: 0px;
z-index: 9999;
background-color: transparent !important;
background-image: linear-gradient(4deg, rgba(40, 40, 40, 0.35), rgba(105, 105, 105, 0.65)) !important;
box-shadow: rgba(0, 0, 0, .17) 0px -13px !important;
backdrop-filter: blur(2px) !important;
height: 64px;
border-radius: 5px;
color: rgba(120, 155, 155, 0.125) !important;
text-shadow: rgba(0, 0, 0, .23) 2px 2px 1px;
transition: all 2s;
transition-delay: 2s;
}
/*
rulebreaks by csslint explained
#bfoot::after - you can NOT remove #bfoot, it will then be assigned to every element in the page (must be a bug in csslint)
.sfbg - already minimal qualifications, again must be a bug in csslint
!important - required, because overriding a style (obviously will be any brute-force overriding style)
alpha-order - I dont alphabetize my properties in this style, they are sorted by date in which they were added (not modified)
prop repeats - for vendor codes only
*/
}