diff options
Diffstat (limited to 'css/tbc_external_review.css')
-rwxr-xr-x | css/tbc_external_review.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/css/tbc_external_review.css b/css/tbc_external_review.css index e5dfa99..169ddc4 100755 --- a/css/tbc_external_review.css +++ b/css/tbc_external_review.css @@ -1,3 +1,6 @@ +.clearfix { + clear: both; +} .form-radios .form-item { display:inline; } @@ -31,3 +34,24 @@ .dull { background: #424242 !important; } +.toggle-hide-show { + float: right; + padding: 5px 7px; + font-size: 0.8em; + border: 2px solid #424242; + -webkit-transition: background-color .5s ease-out 0s; + -moz-transition: background-color .5s ease-out 0s; + -o-transition: background-color .5s ease-out 0s; + transition: background-color .5s ease-out 0s; + -webkit-transition: color .5s ease-out .1s; + -moz-transition: color .5s ease-out .1s; + -o-transition: color .5s ease-out .1s; + transition: color .5s ease-out .1s; + font-weight: bold; +} +.toggle-hide-show:hover { + cursor: pointer; + background: #424242; + color: #ffffff; + font-weight: bold; +} |