MediaWiki:Gadget-ResponsiveStyle.css

From Destinypedia, the Destiny wiki

Note: After publishing, 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: Press Ctrl-F5.
/* Responsive CSS applied to both desktop and mobile */

/* Mobile phone */
@media all and (max-width: 719px) {
	/* Echo extension */
	.mw-echo-ui-notificationItemWidget-content-actions-buttons {
		font-size: 10px;
	}

	/* User board */
	.user-board-message {
		width: auto !important;
	}
	.user-page-message-form textarea {
		width: 100% !important;
	}
}

/* Desktop/tablet */
@media all and (min-width: 720px) {
	/* User profile */
	#user-page-left > .profile-info-container > div {
		width: 50%;
		float: left;
	}
}