From 4603a6bd2af2f3abfa4a0d3bbbf7002392f79960 Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 22 May 2019 11:42:54 +0900 Subject: [PATCH 1/5] Change links to be more noticeable with Bolding and Underlining. --- styles.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/styles.css b/styles.css index c20f5c1..792ab04 100644 --- a/styles.css +++ b/styles.css @@ -67,6 +67,11 @@ h4 { font-size: 1.8em; } +a { + font-weight: bold; + text-decoration: underline; +} + .vision-statement { /* font-size: 1.5em; */ margin-bottom: 3em; From 3ba2ba65111291f41ae4a6fb62c6b7237e1ff1aa Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 22 May 2019 11:50:43 +0900 Subject: [PATCH 2/5] Created script to collapse menu. This is a fix for Issue #5 --- additionalScripts.js | 4 ++++ index.html | 1 + 2 files changed, 5 insertions(+) create mode 100644 additionalScripts.js diff --git a/additionalScripts.js b/additionalScripts.js new file mode 100644 index 0000000..d2420d3 --- /dev/null +++ b/additionalScripts.js @@ -0,0 +1,4 @@ +$(function(){ + var navMain = $(".navbar-collapse"); + navMain.on("click","a:not([data-toggle])",null,function(){navMain.collapse('hide');}); +}); \ No newline at end of file diff --git a/index.html b/index.html index 123ab17..3e66e4e 100644 --- a/index.html +++ b/index.html @@ -206,5 +206,6 @@ integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous" > + From e2fba3210998509ee58c46a43c6e65e89f7a176a Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 22 May 2019 11:56:14 +0900 Subject: [PATCH 3/5] Prepare formatting layout for Project Carousel. --- index.html | 27 ++++++++++++++++++++++++--- 1 file changed, 24 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 123ab17..7b4eaff 100644 --- a/index.html +++ b/index.html @@ -150,9 +150,30 @@


Projects


-

Bus GPS

-

{dev}Osan Website

-

Pending Game Engine

+
From 8f2ac20bc59b3f0eb13e71c25eb4d94e6a636d0c Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 22 May 2019 11:58:21 +0900 Subject: [PATCH 4/5] 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 From 1ec7a366d19947e79e2a44c00fadafda5e39a71f Mon Sep 17 00:00:00 2001 From: sigonasr2 Date: Wed, 22 May 2019 12:02:33 +0900 Subject: [PATCH 5/5] Added random HTML picker script to influence the design of devOsan logo and mini logo at random. --- additionalScripts.js | 22 ++++++++++++++++++++++ index.html | 5 +++-- 2 files changed, 25 insertions(+), 2 deletions(-) create mode 100644 additionalScripts.js diff --git a/additionalScripts.js b/additionalScripts.js new file mode 100644 index 0000000..3a69739 --- /dev/null +++ b/additionalScripts.js @@ -0,0 +1,22 @@ +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]; +} \ No newline at end of file diff --git a/index.html b/index.html index 123ab17..da70a56 100644 --- a/index.html +++ b/index.html @@ -34,7 +34,7 @@
-
+

{dev +