diff --git a/additionalScripts.js b/additionalScripts.js new file mode 100644 index 0000000..a65cf3c --- /dev/null +++ b/additionalScripts.js @@ -0,0 +1,28 @@ + +var vals = [ + `

+ {dev}Osan +

+

Software Development Club

`, //Original + `

+ {dev}Osan +

+

Software Development Club

`, //By Sig +]; + +var vals2 = [ + `{dev}Osan`, //Original + `{dev}Osan`, //By Sig +]; + +window.onload=generateLogo(Math.floor(Math.random()*vals.length)); + +function generateLogo(numb) { + document.getElementById("devOsanLogo-dynamic").innerHTML=vals[numb]; + document.getElementById("devOsanMiniLogo-dynamic").innerHTML=vals2[numb]; +} + +$(function(){ + var navMain = $(".navbar-collapse"); + navMain.on("click","a:not([data-toggle])",null,function(){navMain.collapse('hide');}); +}); diff --git a/index.html b/index.html index 0b92f02..a8e168b 100644 --- a/index.html +++ b/index.html @@ -34,7 +34,7 @@
-
-

+
+

{dev}


Projects


-

Bus GPS

-

{dev}Osan Website

-

Pending Game Engine

+

@@ -169,10 +190,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! +
+
@@ -205,6 +246,7 @@ src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous" - > + > diff --git a/styles.css b/styles.css index 9f7971f..8fe81fc 100644 --- a/styles.css +++ b/styles.css @@ -67,17 +67,9 @@ h4 { font-size: 1.8em; } -h1.devOsan{ - text-shadow: 2px 2px 6px #AAFFAA; -} - -a.devOsan{ - text-shadow: 0px 0px 2px #AAFFAA; - color:black; -} - -h4.devOsan{ - text-shadow: 1px 1px 3px white; +a { + font-weight: bold; + text-decoration: underline; } .vision-statement { @@ -121,3 +113,32 @@ h4.devOsan{ .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