Compare commits

...

7 Commits

Author SHA1 Message Date
e9575516f4
Merge branch 'dev' into shadowText-branch 2019-05-22 12:09:18 +09:00
18ad520437
Merge pull request #13 from sigonasr2/questions-branch
Prepare formatting for Questions/FAQ section.
2019-05-22 12:07:43 +09:00
a5a0ebc52a
Merge pull request #12 from sigonasr2/linkModifications-branch
Change links to be more noticeable with Bolding and Underlining.
2019-05-22 12:07:03 +09:00
9b6b6526e3
Merge pull request #11 from sigonasr2/dynamicLogo-branch
Added random HTML picker script to influence the design of devOsan lo…
2019-05-22 12:06:29 +09:00
8f2ac20bc5 Prepare formatting for Questions/FAQ section. 2019-05-22 11:58:21 +09:00
6b8f562c2a Add in shadowing to make devOsan title stand out and readable. 2019-05-22 11:53:50 +09:00
4603a6bd2a Change links to be more noticeable with Bolding and Underlining. 2019-05-22 11:42:54 +09:00
2 changed files with 59 additions and 5 deletions

View File

@ -190,11 +190,31 @@
</div> </div>
<div class="col-sm-6" id="faq"> <div class="col-sm-6" id="faq">
<h3>FAQ</h3> <h3>FAQ</h3>
<div class="question1">
<h6>Do I have to know how to program?</h6> <h6>Do I have to know how to program?</h6>
<div class="answer"> <div class="answer">
Absolutely not, just a desire to hang out with software developers. Absolutely not, just a desire to hang out with software developers.
</div> </div>
</div> </div>
<div class="question2">
<h6>I want to learn a programming language but I have no experience. Where do I start?</h6>
<div class="answer">
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.
</div>
</div>
<div class="question1">
<h6>How do I fix errors when I run into them and don't know what do?</h6>
<div class="answer">
Google is your best friend. Usually asking your question through Google gives you a <b>Stack Overflow</b> article with similar issues that others have faced like you.
</div>
</div>
<div class="question2">
<h6>I want to teach something for the club that would be beneficial!</h6>
<div class="answer">
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!
</div>
</div>
</div>
</div> </div>
</div> </div>

View File

@ -1,5 +1,5 @@
.above-the-fold { .above-the-fold {
min-height: 100vh; min-height: 95vh;
background-image: url("img/devOsan_noLogo.png"); background-image: url("img/devOsan_noLogo.png");
background-size: cover; background-size: cover;
background-repeat: no-repeat; background-repeat: no-repeat;
@ -67,6 +67,11 @@ h4 {
font-size: 1.8em; font-size: 1.8em;
} }
a {
font-weight: bold;
text-decoration: underline;
}
.vision-statement { .vision-statement {
/* font-size: 1.5em; */ /* font-size: 1.5em; */
margin-bottom: 3em; margin-bottom: 3em;
@ -108,3 +113,32 @@ h4 {
.answer { .answer {
margin-left: 10px; 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;
}