-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
164 additions
and
130 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/* @file main.scss | ||
* @brief Main styles for the TartanHacks 2014 website. | ||
* @author Oscar Bezi, [email protected] | ||
* @since 23 November 2014 | ||
*/ | ||
body { | ||
margin: 0 10%; | ||
padding: 0; | ||
font-family: Montserrat, Helvetica Neue, Helvetica, Arial, sans-serif; | ||
text-align: center; } | ||
|
||
@media (min-width: 720px) { | ||
body { | ||
margin: 0 20%; } } | ||
|
||
h1 { | ||
text-transform: uppercase; } | ||
|
||
hr { | ||
margin: 3em auto; | ||
width: 50%; } | ||
|
||
#splash { | ||
width: 100%; | ||
height: 100%; } | ||
#splash h1 { | ||
font-family: Roboto Slab, serif; | ||
font-size: 3em; } | ||
#splash #navbar { | ||
/* override semantic-ui's padding */ | ||
margin: 0; | ||
padding: 1rem 0; } | ||
|
||
#faq ul { | ||
padding: 0; | ||
margin: 0; | ||
width: 100%; } | ||
#faq li { | ||
list-style: none; } | ||
|
||
#schedule .grid { | ||
/* override semantic-ui */ | ||
margin: 0; } | ||
#schedule ul { | ||
padding: 0; | ||
margin: 0; | ||
width: 100%; } | ||
#schedule .schedule-item { | ||
list-style: none; } | ||
#schedule .time { | ||
color: green; | ||
padding: 0 1em 0 0; } | ||
|
||
.scottylabs-logo span { | ||
font-size: 3em; } | ||
|
||
footer { | ||
width: 100%; | ||
text-align: right; } | ||
footer span { | ||
padding: 0 1em; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
(function() { | ||
console.log("App initialised."); | ||
|
||
}).call(this); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
|
||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"/> | ||
<meta name="description" content="Tartanhacks 2014 Website"/> | ||
<meta name="author" content="Oscar Bezi, [email protected]"/> | ||
<meta name="viewport" content="initial-scale=1,width=device-width"/> | ||
<meta name="mobile-web-app-capable" content="yes"/> | ||
<link href="http://fonts.googleapis.com/css?family=Montserrat:700,400" rel="stylesheet"/> | ||
<link href="http://fonts.googleapis.com/css?family=Roboto+Slab:700,400" rel="stylesheet"/> | ||
<link href="http://cdnjs.cloudflare.com/ajax/libs/semantic-ui/0.19.3/css/semantic.min.css" rel="stylesheet"/> | ||
<link href="assets/css/main.css" rel="stylesheet"/> | ||
<link rel="icon" sizes="196x196" href="assets/imgs/favicon.ico"/> | ||
</head> | ||
<body> | ||
<div id="splash"> | ||
<div id="navbar" class="ui text menu"><a href="#about" class="item">About</a><a href="#faw" class="item">FAQ</a><a href="#schedule" class="item">Schedule</a><a href="#sponsors" class="item">Sponsors</a><a href="#registration" class="item">Registration</a></div><img src="http://placehold.it/500x500" alt="TartanHacks logo"/> | ||
<h1>TartanHacks</h1> | ||
<div id="more-info"> | ||
<p>January 2014</p> | ||
<p>One sentence blurb.</p> | ||
<p>Brought to you by ScottyLabs.</p> | ||
<button>Register</button> | ||
</div> | ||
</div> | ||
<hr/> | ||
<div id="about"> | ||
<h1>What is TartanHacks?</h1> | ||
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean iaculis varius mollis. Duis eget velit faucibus, vehicula lorem sed, molestie dolor. Duis dapibus ex lorem, et interdum felis fringilla consequat. Pellentesque nec dui mauris. Maecenas quis pretius odio. Aliquam ac nisi vitae orci iaculis malesuada vitae sit amet risus.</p> | ||
</div> | ||
<hr/> | ||
<div id="faq"> | ||
<h1>FAQ</h1> | ||
<ul> | ||
<li> | ||
<p class="question">Question</p> | ||
<p class="answer">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean iaculis varius mollis.</p> | ||
</li> | ||
<li> | ||
<p class="question">Question</p> | ||
<p class="answer">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean iaculis varius mollis.</p> | ||
</li> | ||
<li> | ||
<p class="question">Question</p> | ||
<p class="answer">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean iaculis varius mollis.</p> | ||
</li> | ||
<li> | ||
<p class="question">Question</p> | ||
<p class="answer">Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean iaculis varius mollis.</p> | ||
</li> | ||
</ul> | ||
</div> | ||
<hr/> | ||
<div id="schedule"> | ||
<h1>Schedule</h1> | ||
<div class="two column stackable ui grid"> | ||
<div id="day1" class="column day"> | ||
<h2>Friday</h2> | ||
<ul> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
</ul> | ||
</div> | ||
<div id="day2" class="column day"> | ||
<h2>Saturday</h2> | ||
<ul> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
<li class="schedule-item"><span class="time">8am</span>Food</li> | ||
<li class="schedule-item"><span class="time">9am</span>Hacking</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
<hr/> | ||
<div id="sponsors"> | ||
<h1>Sponsors</h1><img src="http://placehold.it/400x200" alt="Sponsor logo" class="sponsor-logo-main"/> | ||
<ul id="sponsor-list"><img src="http://placehold.it/200x100" alt="Sponsor logo" class="sponsor-logo"/><img src="http://placehold.it/200x100" alt="Sponsor logo" class="sponsor-logo"/><img src="http://placehold.it/200x100" alt="Sponsor logo" class="sponsor-logo"/><img src="http://placehold.it/200x100" alt="Sponsor logo" class="sponsor-logo"/><img src="http://placehold.it/200x100" alt="Sponsor logo" class="sponsor-logo"/></ul> | ||
<div class="scottylabs-logo"><img src="http://placehold.it/50x50" alt="ScottyLabs Logo"/><span>ScottyLabs</span></div> | ||
</div> | ||
<hr/> | ||
<div id="registration"> | ||
<h1>Registration</h1> | ||
<h2>Woah there, buddy.</h2> | ||
<p>We're not opening registration yet, but if you give us your email we'll tell you when this is opening up.</p> | ||
<input type="text" placeholder="[email protected]"/> | ||
<button>Keep me posted</button> | ||
</div> | ||
<footer><span>ScottyLabs</span></footer> | ||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.