Skip to content

Instantly share code, notes, and snippets.

@vasilisvg
Created July 14, 2011 20:53
Show Gist options
  • Save vasilisvg/1083426 to your computer and use it in GitHub Desktop.
Save vasilisvg/1083426 to your computer and use it in GitHub Desktop.
An adaptive user style for IRCCloud
/*
An adaptive user style for IRCCloud which hides options in smaller screens
This is meant for browsers which can be resized
It is not intended for devices with small screens.
*/
/* your source here */
@media (max-width: 900px) {
#bufferView {
margin: 0 !important;
}
#sidebar {
display: none !important;
}
}
@media (max-width: 700px) {
#container {
min-width: 1px !important;
}
#status,
#users,
#statusBar{
display: none !important;
}
#bufferViewContainer {
top: 0 !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment