MediaWiki:Gadget-ResponsiveStyle.css: Difference between revisions
From Destinypedia, the Destiny wiki
(Created page with "→Responsive CSS applied to both desktop and mobile: ") |
mNo edit summary |
||
(18 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
/* Responsive CSS applied to both desktop and mobile */ | /* Responsive CSS applied to both desktop and mobile */ | ||
/* Mobile phone */ | |||
@media all and (max-width: 719px) { | |||
/* 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; | |||
} | |||
} |
Latest revision as of 09:19, August 20, 2024
/* Responsive CSS applied to both desktop and mobile */
/* Mobile phone */
@media all and (max-width: 719px) {
/* 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;
}
}