diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-05 15:32:42 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-10-05 15:33:41 +0200 |
commit | 660d1b69d4551000182aa56e3b5b370db3a97e68 (patch) | |
tree | 05827e06742da57ff0c83ea62b569329fb8b2374 /css | |
parent | 225716b88090c78aa8e364e372cf91b3eb53c679 (diff) |
Highlight only the border around newest hint
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq/hint.css | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/css/codeq/hint.css b/css/codeq/hint.css index 03f1b56..6e5fd25 100644 --- a/css/codeq/hint.css +++ b/css/codeq/hint.css @@ -2,15 +2,6 @@ a.hint-static-link { cursor: pointer; } -div.hint-static-group, -div:not(.hint-static-group) > div.hint-static { - border: 1px solid gray; - border-radius: 4px; - margin-bottom: 0.5em; - margin-top: 0.5em; - padding: 0.5em; -} - .hint-static img { max-width: 80%; /* center img trick */ @@ -19,6 +10,14 @@ div:not(.hint-static-group) > div.hint-static { margin-right: auto; } -.hints > :first-child { - font-weight: bold; -}
\ No newline at end of file +.hints > div { + border: 1px solid gray; + border-radius: 4px; + margin-bottom: 0.5em; + margin-top: 0.5em; + padding: 0.5em; +} + +.hints > div:first-child { + border: 2px solid black; +} |