Last active
February 4, 2019 10:23
-
-
Save jbenet/2b0d174fa92e03f3d670746d2b5a073a to your computer and use it in GitHub Desktop.
Large google docs comments
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
/* | |
large google docs comments | |
add this to a user stylesheet | |
like https://github.com/openstyles/stylus | |
*/ | |
/* make comment boxes large */ | |
@media only screen and (min-width: 1400px) { | |
.docos-layout-anchored | |
.docos-anchoreddocoview { | |
width: 350px; | |
} | |
} | |
@media only screen and (min-width: 1600px) { | |
.kix-appview-editor-container { | |
margin-left: -80px; | |
} | |
.docos-layout-anchored | |
.docos-anchoreddocoview { | |
width: 550px; | |
} | |
} | |
@media only screen and (min-width: 1800px) { | |
.kix-appview-editor-container { | |
margin-left: -200px; | |
} | |
.docos-layout-anchored | |
.docos-anchoreddocoview { | |
width: 750px; | |
} | |
} | |
@media only screen and (min-width: 2000px) { | |
.kix-appview-editor-container { | |
margin-left: -250px; | |
} | |
.docos-layout-anchored | |
.docos-anchoreddocoview { | |
width: 850px; | |
} | |
} | |
/* different fonts for the comments */ | |
.docos-layout-anchored | |
.docos-anchoreddocoview { | |
/* nice serif font */ | |
/* font-family: "EB Garamond"; */ | |
/* readability at small sizes */ | |
/* font-family: "Gill Sans", Futura, Arial, sanserif; */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
HT to @shannonwells for: