Template:Home/styles.css: Difference between revisions

Template page
No edit summary
No edit summary
Line 31: Line 31:
     padding-top: 1em;
     padding-top: 1em;
     padding-bottom: 1em;
     padding-bottom: 1em;
}
@media screen and (max-width: 850px) {
.main-portals > div {
    grid-column: span 2;
}
}
}


Line 43: Line 49:
}
}


/*
@media screen and (max-width: 750px) {
@media screen and (max-width: 750px) {
.main-portals {
.main-portals {
Line 50: Line 57:
}
}
}
}
*/

Revision as of 20:41, 1 June 2023

div#catlinks-sidebar {
    display: none;
}

#content-bottom-stuff {
    display: none !important;
}

.home-page h2:after {
    border-bottom: 1px solid transparent !important;
}

div.tright, div.floatright, table.floatright {
    padding: 0 0 1em 0em;
}

.thumbinner {
    max-width: 250px;
}
.main-portals {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.main-portals > div {
	border: 1px solid #f81472;
    border-radius: 15px;
	background-image: radial-gradient(#001321, black 200%);
    padding-top: 1em;
    padding-bottom: 1em;
}

@media screen and (max-width: 850px) {
.main-portals > div {
    grid-column: span 2;
}
}

.home-page #youtube-outer {
    margin: 0 auto;
    margin-bottom: 1em;
    float: none;
}

#hide-cat {
    display: none;
}

/*
@media screen and (max-width: 750px) {
.main-portals {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
}
}
*/