Created
September 27, 2018 23:00
-
-
Save Xkeeper0/b06bc2a4194a1beea066c8e8d0e5c184 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
this attempts to make New Gmail™ less shitty by adding some subtle backgrounds, | |
outlines, and other applications of actual fucking contrast. | |
sorry about the fact that you're most likely going to have to | |
figure out what all these mean because lol class names | |
maybe next time i'll write | |
html > body > div > div > div > div > div > div > div > span > div > span > table > tbody > tr > td > div > div > div > div > span | |
and then it might last a little longer | |
*/ | |
*, *::before, *::after { | |
border-radius: 0; | |
animation: none ; | |
transition-property: none ; | |
transform: none ; | |
text-transform: none ; | |
} | |
.G-Ni * * { | |
background-color: rgba(0,0,0,.6); | |
border: 2px solid #000; | |
border-radius: 3px; | |
} | |
.ads { | |
background: #ddd; | |
} | |
.gs div[class=""] { | |
background: white; | |
padding: 0.5em; | |
border: 1px solid #666; | |
} | |
.gB { | |
background: #bbb; | |
} | |
.bAs > * *, .aDh { | |
background-color: #eee; | |
} | |
.bAs { | |
border-bottom: 1px solid #888; | |
} | |
.aDh { | |
border-top: 1px solid #888; | |
} | |
.J-Z { | |
top: 7px; | |
border: 1px solid #888; | |
border-bottom: 1px solid #eee; | |
box-shadow: 0px -2px 10px -2px #888; | |
} | |
.amn { | |
background: #bbb; | |
} | |
.amn > span { | |
background: white; | |
color: black; | |
border: 1px solid black; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment