From 8f2ac20bc59b3f0eb13e71c25eb4d94e6a636d0c Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 22 May 2019 11:58:21 +0900 Subject: [PATCH] Prepare formatting for Questions/FAQ section. --- index.html | 28 ++++++++++++++++++++++++---- styles.css | 29 +++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 123ab17..4b7adbf 100644 --- a/index.html +++ b/index.html @@ -169,10 +169,30 @@

FAQ

-
Do I have to know how to program?
-
- Absolutely not, just a desire to hang out with software developers. -
+
+
Do I have to know how to program?
+
+ Absolutely not, just a desire to hang out with software developers. +
+
+
+
I want to learn a programming language but I have no experience. Where do I start?
+
+ Look at the "Getting Started" Learning Resources above for great starting points. Pick something you are passionate about making and work towards your goal by learning the requirements of that goal. +
+
+
+
How do I fix errors when I run into them and don't know what do?
+
+ Google is your best friend. Usually asking your question through Google gives you a Stack Overflow article with similar issues that others have faced like you. +
+
+
+
I want to teach something for the club that would be beneficial!
+
+ Awesome! As we explain in our meetings, anyone can come up and be the speaker for the week. If you have a topic that would benefit others then by all means we would love to hear from you! Let us know when you want to speak! +
+
diff --git a/styles.css b/styles.css index c20f5c1..8f667d6 100644 --- a/styles.css +++ b/styles.css @@ -108,3 +108,32 @@ h4 { .answer { margin-left: 10px; } + +div[class="question1"]{ + margin-left: 10px; + padding-bottom: 12px; + background-color: rgb(250,240,240); +} + +div[class="question1"]>div[class="answer"]{ + margin-left: 10px; + padding-bottom: 12px; + background-color: rgb(240,240,220); +} + +div[class="question2"]{ + margin-left: 10px; + padding-bottom: 12px; + background-color: rgb(240,240,240); +} + +div[class="question2"]>div[class="answer"]{ + margin-left: 10px; + padding-bottom: 12px; + background-color: rgb(230,240,220); +} + +div[class="answer"]>b{ + font-weight: normal; + text-decoration:underline; +} \ No newline at end of file