Xeverything11 (talk | contribs)
Rounded
Xeverything11 (talk | contribs)
wider
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
.information-table {
.information-table {
     display: flex;
     display: grid;
     flex-wrap: wrap;
     grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 1rem;
}
}


Line 7: Line 8:
     border: 1px solid var(--color-primary1);
     border: 1px solid var(--color-primary1);
     padding: 1rem;
     padding: 1rem;
    margin: 0.5rem;
    flex: 16rem;
     border-radius: 4px;
     border-radius: 4px;
}
}

Latest revision as of 08:14, 27 May 2025

.information-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    grid-gap: 1rem;
}

.information-table-row {
    border: 1px solid var(--color-primary1);
    padding: 1rem;
    border-radius: 4px;
}

.fileinfo-paramfield {
	background: var(--color-primary-gradient);
    margin: -1rem -1rem 1rem;
	padding: 0.5rem 1rem;
    font-size: 1.6rem;
    color: white;
    text-transform: lowercase;
	font-weight: bold;
    border-radius: 3px 3px 0 0;
}
/* [[Category:Template stylesheets]] */