diff options
Diffstat (limited to 'web/style.css')
-rw-r--r-- | web/style.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/web/style.css b/web/style.css index a21fc52..f20b1be 100644 --- a/web/style.css +++ b/web/style.css @@ -122,6 +122,7 @@ nav.primary a.current { #content h1 { color: #696969; + font-size: 24pt; } #getstarted { @@ -191,3 +192,28 @@ footer a:hover { .imageQuestion img { padding: 1em; } + +.textQuestion { + margin-top: 3em; +} + +.textQuestion .answer { + background: #ededed; + width: 90%; + margin: 0.5em auto 0.5em auto; + text-align: left; + padding: 1em; + color: #676767; + font-weight: bold; + cursor: pointer; +} + +.textQuestion .answer:hover, .textQuestion .selected { + background: #fe6000; + color: white; +} + +.textQuestion .question a { + text-decoration: none; +} + |