summaryrefslogtreecommitdiff
path: root/web/style.css
diff options
context:
space:
mode:
authorJesse Morgan <jesse@jesterpm.net>2013-06-03 17:53:53 -0700
committerJesse Morgan <jesse@jesterpm.net>2013-06-03 17:53:53 -0700
commit2689b2e69e77677522bc75cb7d790bc30ff644ab (patch)
tree736fba7d0d168d81e805b22c5d48105cb980e156 /web/style.css
parent39d697b619c5b836da38d3ae457fee8999055c45 (diff)
Adding Initial Survey Templates
Adding the base survey template and the image and text question types. Moved the hero section to the index.html template to make common-page more common. Also adding jquery and some initial grow.js code.
Diffstat (limited to 'web/style.css')
-rw-r--r--web/style.css26
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;
+}
+