Zoom in chat font size, while keep other distractions small.
Google AI Studio font enlargement by Selladore-Wong
Details
AuthorSelladore-Wong
LicenseNo License
Categoryhttps://aistudio.google.com/prompts
Created
Updated
Code size1.0 kB
Code checksum7984302a
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Google AI Studio font enlargement
@version 20250410.02.49
@namespace ?
@description Zoom in chat font size, while keep other distractions small.
@license No License
==/UserStyle== */
@-moz-document url-prefix("https://aistudio.google.com/") {
ms-header-root {
z-index:100 !important;
transform: translate(0,-50px);
transition: 0.3s;
height: 10px;
opacity: 50%;
}
ms-header-root:hover {
transform: translate(0,0);
height:100px;
opacity: 100%;
}
code {
font-size: 22px !important;
line-height: 1.5 !important
}
.ng-star-inserted:not(.gmat-title-small):not(.ng-trigger):not(.nav-item-text-wrapper) {
font-size: 22px !important;
line-height: 1.6 !important
}
.gmat-title-small {
font-size: 18px !important;
line-height: 1.6 !important
}
.gmat-body-small {
font-size: 15px !important;
/*line-height: 1.6 !important */
}
.textarea {
font-size: 20px !important;
line-height: 1.8 !important
}
}