diff options
author | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-23 15:09:53 +0200 |
---|---|---|
committer | Timotej Lazar <timotej.lazar@araneo.org> | 2015-09-23 15:09:53 +0200 |
commit | 8ead82103ef7ec79f551db0e35334056c6353166 (patch) | |
tree | c87a5c9d6d1b8518435758d0ecab8244d23b543e /css | |
parent | 4993c18e47561c201161fbe0f133f029d57c7b5c (diff) |
Place a border around individual static hints
Diffstat (limited to 'css')
-rw-r--r-- | css/codeq/hint.css | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/css/codeq/hint.css b/css/codeq/hint.css index 76090b2..246cc04 100644 --- a/css/codeq/hint.css +++ b/css/codeq/hint.css @@ -1,3 +1,11 @@ a.hint-static-link { cursor: pointer; -}
\ No newline at end of file +} + +div.hint-static-group, +div:not(.hint-static-group) > div.hint-static { + border: 1px solid gray; + border-radius: 4px; + margin-bottom: 0.5em; + padding: 0.5em; +} |