Extra-wide display sizing for the 1950 census search tool at archives.gov which makes better use of space.
1950census.archives.gov Extra Wide Display by whi7ed3vil
Details
Authorwhi7ed3vil
LicenseNo License
Category1950census.archives.gov
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name 1950census.archives.gov Extra Wide Display
@namespace github.com/openstyles/stylus
@version 1.0.2
@description Extra-wide display sizing for the 1950 census search tool at archives.gov which makes better use of space.
@author Jonathan C. Nilson
==/UserStyle== */
@-moz-document domain("1950census.archives.gov") {
/* Extra-wide display size >2000px */
@media (min-width: 2000px) {
.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl
{
max-width: 2500px;
margin-left: auto;
margin-right: auto;
}
.col-md-3 {
/* width: 25%; */
width: 12%;
}
.col-md-9 {
/* width: 75% */
width: 88%;
}
div.search > h1.search {
/*
width: 110%;
margin-left: -5%;
padding-left: 7%;
*/
width: 102%;
margin-left: -1%;
padding-left: 2%;
}
}
}