Browse Source

Merge pull request #72 from AshtonHarding/master

Update style.css
pull/40/head
Michael Walker 8 years ago
committed by GitHub
parent
commit
7c27823868
  1. 20
      stylesheets/style.css

20
stylesheets/style.css

@ -1872,3 +1872,23 @@ table.fileboard .intro a {
#rules-popup .rules-popup-form-input {
width: 100px;
}
/* dropdown for boardlist. */
.dropdown {
position: relative;
display: inline-block;
}
/* Alter details as needed, I'm not a designer. */
.dropdown-content {
display: none;
position: absolute;
background-color: #666666;
min-width: 130px;
padding: 2px 6px;
color: #DCA1F5;
}
.dropdown:hover .dropdown-content {
display: block;
}

Loading…
Cancel
Save