/* ==UserStyle==
@name forums.anandtech.com hide announcements
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Hide the Announcements area unless I hover or click it.
@author Ken_g6
==/UserStyle== */
@-moz-document domain("forums.anandtech.com") {
div.notice-content {
max-height: 1em;
overflow: hidden;
text-indent: -9999px;
position: relative;
transition: max-height 0s;
}
div.notice-content:before {
text-indent: 9999px;
position: absolute;
content: "Announcement!";
top:-1px;
}
div.notice-content:hover, div.notice-content:focus {
max-height: 100vh;
text-indent: 0px;
transition: max-height 2s;
}
}