Prepare formatting for Projects Carousel.

linkModifications-branch
Joshua Sigona 6 years ago committed by sigonasr2
parent c4f30b9f99
commit 10d8be599a
  1. 55
      index.html
  2. 27
      styles.css

@ -147,9 +147,30 @@
<div class="col-sm-6" id="projects"> <div class="col-sm-6" id="projects">
<h3><i class="fas fa-code-branch"></i><br />Projects</h3> <h3><i class="fas fa-code-branch"></i><br />Projects</h3>
<br /> <br />
<p>Bus GPS</p> <div id="projectCarousel" class="carousel slide" data-ride="carousel">
<p>{dev}Osan Website</p> <div class="carousel-inner">
<p>Pending Game Engine</p> <div class="carousel-item active" data-interval="10000">
<h3>Bus GPS</h3>
<p>Kevin Falting</p>
</div>
<div class="carousel-item" data-interval="10000">
<h3>{dev}Osan Website</h3>
<p>{dev}Osan Club</p>
</div>
<div class="carousel-item" data-interval="10000">
<h3>Pending Game Engine</h3>
<p>Joshua Sigona</p>
</div>
</div>
<a class="carousel-control-prev" href="#projectCarousel" role="button" data-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#projectCarousel" role="button" data-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div> </div>
</div> </div>
</div> </div>
@ -166,10 +187,30 @@
</div> </div>
<div class="col-sm-6" id="faq"> <div class="col-sm-6" id="faq">
<h3>FAQ</h3> <h3>FAQ</h3>
<h6>Do I have to know how to program?</h6> <div class="question1">
<div class="answer"> <h6>Do I have to know how to program?</h6>
Absolutely not, just a desire to hang out with software developers. <div class="answer">
</div> Absolutely not, just a desire to hang out with software developers.
</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> </div>

@ -123,6 +123,31 @@ a {
padding-left: 12px; padding-left: 12px;
} }
.answer { div[class="question1"]{
margin-left: 10px; 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;
} }

Loading…
Cancel
Save