MediaWiki:Common.css
From Fantasy Strike
(Difference between revisions)
(Created page with "- →CSS placed here will be applied to all skins: .RightInfoPane { float:right; clear: both; background-color: #331e1e; border: 3px double #CF7832; border-radius: 10px; ma...") |
|||
Line 31: | Line 31: | ||
.VisibleTableWithCellBorders td { | .VisibleTableWithCellBorders td { | ||
border-width: 1px; | border-width: 1px; | ||
+ | } | ||
+ | |||
+ | |||
+ | /* tooltip styling. by default the element to be styled is .tooltip */ | ||
+ | .tooltip { | ||
+ | display:none; | ||
+ | /*background:transparent url(http://flowplayer.org/tools/img/tooltip/black_arrow.png);*/ | ||
+ | text-align:center; | ||
+ | font-size:12px; | ||
+ | padding:10px; | ||
+ | color:#fff; | ||
+ | border:1px solid #CF7832; | ||
+ | border-radius:20px; | ||
+ | background-color:#331e1e; | ||
+ | } | ||
+ | |||
+ | .tooltip_trigger { | ||
+ | color:#00B000; | ||
+ | text-decoration:underline; | ||
} | } |
Revision as of 07:52, 5 November 2011
/* CSS placed here will be applied to all skins */ .RightInfoPane { float:right; clear: both; background-color: #331e1e; border: 3px double #CF7832; border-radius: 10px; margin: 4px; margin-top: 8px; padding: 4px; } .VisibleTable, .VisibleTableWithCellBorders { background-color: #331E1E; border: 1px solid #CF7832; border-collapse: collapse; } .VisibleTable td, .VisibleTableWithCellBorders td { padding: 2px; border-color: #A55858; border-style: solid; } .VisibleTable td { border-width: 0px; } .VisibleTableWithCellBorders td { border-width: 1px; } /* tooltip styling. by default the element to be styled is .tooltip */ .tooltip { display:none; /*background:transparent url(http://flowplayer.org/tools/img/tooltip/black_arrow.png);*/ text-align:center; font-size:12px; padding:10px; color:#fff; border:1px solid #CF7832; border-radius:20px; background-color:#331e1e; } .tooltip_trigger { color:#00B000; text-decoration:underline; }