User

Seb35/bluell.css

< User:Seb35
Revision as of 14:50, 17 September 2021 by Seb35 (talk | contribs) (Created page with "#totalContainer { display: flex; justify-content: space-between; padding: 0 1em; } #filterContainer { margin-top: 3em; } #filterContainer > p:first-child { display:...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Note: After saving, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Go to Menu → Settings (Opera → Preferences on a Mac) and then to Privacy & security → Clear browsing data → Cached images and files.
#totalContainer {
	display: flex;
	justify-content: space-between;
	padding: 0 1em;
}

#filterContainer {
	margin-top: 3em;
}

#filterContainer > p:first-child {
    display: flex;
    flex-direction: column;
    margin: 20px 5px;
}

#buttonsContainer p {
	display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

#buttonsContainer + p {
	text-align: center;
}

#audioresults {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media (max-width: 1100px) {
	#audioresults {
		display: grid;
		grid-template-columns: 1fr;
	}
}

@media (max-width: 750px) {
	#totalContainer {
		flex-direction: column;
		align-items: center;
	}
}

.audiobox {
	margin-right: 12px;
}

#totalContainer h2 {
    text-align: center;
}

#audioPages {
	display: flex;
    justify-content: flex-start;
}

#audioPages a {
    margin-right: 0.5em;
}