Skip to content
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2 from sigonasr2/patch-1
Browse files Browse the repository at this point in the history
Add in shadowing to make devOsan title stand out and readable. Made l…
  • Loading branch information
sigonasr2 authored May 7, 2019
2 parents ca198f8 + a17ed33 commit 4322815
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 12 deletions.
4 changes: 4 additions & 0 deletions additionalScripts.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
$(function(){
var navMain = $(".navbar-collapse");
navMain.on("click","a:not([data-toggle])",null,function(){navMain.collapse('hide');});
});
18 changes: 7 additions & 11 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,9 @@
<!-- Header information, above the fold -->
<div class="above-the-fold">
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<a class="navbar-brand" href="#"
><span style="color: #696035">{</span>dev<span style="color: #696035"
>}</span
>Osan</a
>
<a class="devOsan" href="#" >
<span style="color: #696035">{</span>dev<span style="color: #696035">}</span>Osan
</a>
<button
class="navbar-toggler"
type="button"
Expand Down Expand Up @@ -107,13 +105,10 @@ <h5 class="card-title">Pitch & Prototype Weekend</h5>
</div>
<div class="row name-slogan">
<div class="col col-md-6 offset-md-6">
<h1>
<span style="color: #696035">{</span>dev<span
style="color: #696035"
>}</span
>Osan
<h1 class="devOsan">
<span style="color: #696035">{</span>dev<span style="color: #696035">}</span>Osan
</h1>
<h4>Software Development Club</h4>
<h4 class="devOsan">Software Development Club</h4>
</div>
</div>
</div>
Expand Down Expand Up @@ -209,5 +204,6 @@ <h3>Contact Us</h3>
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"
></script>
<script src="additionalScripts.js"></script>
</body>
</html>
15 changes: 14 additions & 1 deletion styles.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.above-the-fold {
min-height: 100vh;
min-height: 95vh;
background-image: url("img/devOsan_noLogo.png");
background-size: cover;
background-repeat: no-repeat;
Expand Down Expand Up @@ -58,6 +58,19 @@ h1 {
font-size: 5em;
}

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;
}

h4 {
font-size: 1.8em;
}
Expand Down

0 comments on commit 4322815

Please sign in to comment.