Skip to content

Instantly share code, notes, and snippets.

@macalinao
Created January 3, 2016 23:02
Show Gist options
  • Save macalinao/eba45bcb3cd85ddb6051 to your computer and use it in GitHub Desktop.
Save macalinao/eba45bcb3cd85ddb6051 to your computer and use it in GitHub Desktop.
diff --git a/CNAME b/CNAME
new file mode 100644
index 0000000..cf75148
--- /dev/null
+++ b/CNAME
@@ -0,0 +1 @@
+hackdfw.com
diff --git a/README.md b/README.md
index 2c56405..d5e216f 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,9 @@
# hackdfw-site
+![Logo](img/logo_small.png)
+
The website for HackDFW 2015.
+
+## License
+
+ISC
diff --git a/css/style.css b/css/style.css
index 2fa2d59..2a7ffe0 100644
--- a/css/style.css
+++ b/css/style.css
@@ -1,26 +1,34 @@
@font-face {
font-family: "brandon";
font-weight: bold;
- src: url("/fonts/Brandon_bld.otf");
+ src: url("../fonts/Brandon_bld.otf");
}
@font-face {
font-family: "brandon";
- src: url("/fonts/Brandon_reg.otf");
+ src: url("../fonts/Brandon_reg.otf");
}
@font-face {
font-family: "Sentinel";
- src: url("/fonts/Sentinel-Book.otf");
+ src: url("../fonts/Sentinel-Book.otf");
}
@font-face {
font-family: "Sentinel";
font-weight: bold;
- src: url("/fonts/Sentinel-Bold.otf");
+ src: url("../fonts/Sentinel-Bold.otf");
}
@font-face {
font-family: "Sentinel";
font-weight: bold;
- src: url("/fonts/Sentinel-Bold.otf");
+ src: url("../fonts/Sentinel-Bold.otf");
}
+@font-face {
+ font-family: "Sentinel";
+ font-weight: bold;
+ font-style: italic;
+ src: url("../fonts/Sentinel-BoldItalic.otf");
+}
+
+
body {
font: 14pt/1.5 sentinel;
@@ -30,15 +38,19 @@ body {
a {
border-bottom: 1px solid;
color: #000;
+ font-weight: bold;
}
a:hover {
color: #555;
text-decoration: none;
}
-#shapes {
+#shapes * {
visibility: hidden;
+ pointer-events: none;
position: absolute;
+ top: -13337px;
+ left: -13337px;
}
#background {
z-index: -1;
@@ -55,7 +67,7 @@ a:hover {
width: 100%;
height: 100%;
}
-
+
section.container h2 {
font-family: brandon;
@@ -73,40 +85,54 @@ section.container h3 {
section.quote {
margin: 200px auto;
}
+
section.quote img {
- height: 200px;
+ max-height: 200px;
}
+
section.quote p {
- font-size: 1.5em;
- font-family: brandon;
+ font-size: 1.4em;
text-align: center;
}
+section.quote i {
+ font-family: brandon;
+ font-size: 1.6em;
+ font-style: normal;
+ font-weight: bold;
+}
.jumbotron {
background: none;
+ margin-top: 50px;
text-align: center;
font-family: brandon;
}
.jumbotron .logo {
width: 200px;
height: 200px;
- background: url("/img/logo.png") no-repeat center / contain;
+ background: url("../img/Logo.png") no-repeat center / contain;
margin: 50px auto;
}
+
.jumbotron h1 {
font-size: 2em;
text-transform: uppercase;
font-weight: bold;
letter-spacing: 0.5em;
padding-left: 0.5em;
- margin-bottom: 70px;
}
+
+.jumbotron .subtitle {
+ font-weight: bold;
+ font-size: 1.5em;
+}
+
.jumbotron .btn {
background: none;
border: 4px solid;
width: 230px;
padding: 12px;
- margin: 30px auto;
+ margin: 20px auto;
display: block;
border-radius: 0;
font-weight: bold;
@@ -114,7 +140,9 @@ section.quote p {
transition: all 200ms ease-in-out;
}
.jumbotron .btn:hover {
- background: rgba(253, 219, 0, 0.5);
+ background: #000;
+ color: #FFF;
+ border-color: #000;
}
.jumbotron .btn:focus {
outline: none;
@@ -154,18 +182,24 @@ nav ul.nav {
#faq .question:nth-child(even) {
- margin-bottom: 50px;
+ margin-bottom: 70px;
+ float: left;
}
+
#faq .question:nth-child(odd) {
- margin-top: 50px;
+ margin-top: 70px;
+ float: right;
}
+
+
#faq .question:after {
content: "";
- width: 140px;
+ width: 80px;
position: absolute;
bottom: 100%;
- border-bottom: 5px solid;
+ border-bottom: 5px solid;
}
+
/*FAQ Colors!*/
#faq .question:nth-child(5n+0):after {
border-bottom-color: #EE586E;
@@ -236,6 +270,16 @@ nav ul.nav {
opacity: 1;
}
+#contact p {
+ margin-bottom: 30px;
+}
+#contact h3 {
+ margin-top: 60px;
+ font-size: 2em;
+ font-family: sentinel;
+ font-style: italic;
+}
+
footer {
margin-top: 200px;
@@ -248,6 +292,23 @@ footer li a {
border-bottom: none;
margin: 0 20px;
}
-
-
+@media (max-width: 768px) {
+ section.quote img {
+ width: 100%;
+ }
+ section.quote {
+ margin: 100px auto;
+ }
+ .jumbotron .logo {
+ margin: 30px auto !important;
+ }
+ .jumbotron h1 {
+ margin-bottom: 10px !important;
+ font-size: 1.7em !important;
+ }
+ #faq .question {
+ margin: 10px auto !important;
+ float: left !important;
+ }
+}
diff --git a/favicon.ico b/favicon.ico
new file mode 100644
index 0000000..65eee52
Binary files /dev/null and b/favicon.ico differ
diff --git a/fonts/Brandon_bld.otf b/fonts/Brandon_bld.otf
old mode 100755
new mode 100644
diff --git a/fonts/Brandon_reg.otf b/fonts/Brandon_reg.otf
old mode 100755
new mode 100644
diff --git a/fonts/Sentinel-Bold.otf b/fonts/Sentinel-Bold.otf
old mode 100755
new mode 100644
diff --git a/fonts/Sentinel-BoldItalic.otf b/fonts/Sentinel-BoldItalic.otf
old mode 100755
new mode 100644
diff --git a/fonts/Sentinel-Book.otf b/fonts/Sentinel-Book.otf
old mode 100755
new mode 100644
diff --git a/fonts/Sentinel-BookItalic.otf b/fonts/Sentinel-BookItalic.otf
old mode 100755
new mode 100644
diff --git a/img/Contact.svgz b/img/Contact.svgz
old mode 100755
new mode 100644
diff --git a/img/Group.svgz b/img/Group.svgz
old mode 100755
new mode 100644
diff --git a/img/Logo.png b/img/Logo.png
old mode 100755
new mode 100644
diff --git a/img/Superhero.svgz b/img/Superhero.svgz
old mode 100755
new mode 100644
diff --git a/img/logo_small.png b/img/logo_small.png
new file mode 100644
index 0000000..90be903
Binary files /dev/null and b/img/logo_small.png differ
diff --git a/img/partners/att.png b/img/partners/att.png
deleted file mode 100755
index 14aed65..0000000
Binary files a/img/partners/att.png and /dev/null differ
diff --git a/img/partners/call.png b/img/partners/call.png
deleted file mode 100755
index 7f8e9b3..0000000
Binary files a/img/partners/call.png and /dev/null differ
diff --git a/img/partners/delo.png b/img/partners/delo.png
deleted file mode 100755
index 978886d..0000000
Binary files a/img/partners/delo.png and /dev/null differ
diff --git a/img/partners/dfwtech.png b/img/partners/dfwtech.png
deleted file mode 100755
index 4424527..0000000
Binary files a/img/partners/dfwtech.png and /dev/null differ
diff --git a/img/partners/fair-park.png b/img/partners/fair-park.png
deleted file mode 100755
index efc90ce..0000000
Binary files a/img/partners/fair-park.png and /dev/null differ
diff --git a/img/partners/fidelity.png b/img/partners/fidelity.png
deleted file mode 100755
index 8e8f8f7..0000000
Binary files a/img/partners/fidelity.png and /dev/null differ
diff --git a/img/partners/gamestop.png b/img/partners/gamestop.png
deleted file mode 100755
index e9e643a..0000000
Binary files a/img/partners/gamestop.png and /dev/null differ
diff --git a/img/partners/gogo.png b/img/partners/gogo.png
deleted file mode 100755
index edf8c5e..0000000
Binary files a/img/partners/gogo.png and /dev/null differ
diff --git a/img/partners/google.png b/img/partners/google.png
deleted file mode 100755
index 27c192f..0000000
Binary files a/img/partners/google.png and /dev/null differ
diff --git a/img/partners/ibm.png b/img/partners/ibm.png
deleted file mode 100755
index 3ec958f..0000000
Binary files a/img/partners/ibm.png and /dev/null differ
diff --git a/img/partners/icode.png b/img/partners/icode.png
deleted file mode 100755
index f52abd5..0000000
Binary files a/img/partners/icode.png and /dev/null differ
diff --git a/img/partners/illyis.png b/img/partners/illyis.png
deleted file mode 100755
index 4717869..0000000
Binary files a/img/partners/illyis.png and /dev/null differ
diff --git a/img/partners/ilumi.png b/img/partners/ilumi.png
deleted file mode 100755
index ae303ad..0000000
Binary files a/img/partners/ilumi.png and /dev/null differ
diff --git a/img/partners/innovation_greenhouse.png b/img/partners/innovation_greenhouse.png
deleted file mode 100755
index e3ebb79..0000000
Binary files a/img/partners/innovation_greenhouse.png and /dev/null differ
diff --git a/img/partners/intuit.png b/img/partners/intuit.png
deleted file mode 100755
index 6dfa030..0000000
Binary files a/img/partners/intuit.png and /dev/null differ
diff --git a/img/partners/kind.jpg b/img/partners/kind.jpg
deleted file mode 100755
index 4037ac3..0000000
Binary files a/img/partners/kind.jpg and /dev/null differ
diff --git a/img/partners/launch_dfw.png b/img/partners/launch_dfw.png
deleted file mode 100755
index 5112476..0000000
Binary files a/img/partners/launch_dfw.png and /dev/null differ
diff --git a/img/partners/mashery.png b/img/partners/mashery.png
deleted file mode 100755
index 3142a50..0000000
Binary files a/img/partners/mashery.png and /dev/null differ
diff --git a/img/partners/microsoft.png b/img/partners/microsoft.png
deleted file mode 100755
index 2fdd9df..0000000
Binary files a/img/partners/microsoft.png and /dev/null differ
diff --git a/img/partners/mlh.png b/img/partners/mlh.png
deleted file mode 100755
index 9d3c5fd..0000000
Binary files a/img/partners/mlh.png and /dev/null differ
diff --git a/img/partners/mroads.png b/img/partners/mroads.png
deleted file mode 100755
index 2a8c6ca..0000000
Binary files a/img/partners/mroads.png and /dev/null differ
diff --git a/img/partners/nod.png b/img/partners/nod.png
deleted file mode 100755
index 6914bad..0000000
Binary files a/img/partners/nod.png and /dev/null differ
diff --git a/img/partners/pebble.svg b/img/partners/pebble.svg
deleted file mode 100755
index 02fb5cb..0000000
--- a/img/partners/pebble.svg
+++ /dev/null
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<svg width="115px" height="35px" viewBox="0 0 115 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sketch="http://www.bohemiancoding.com/sketch/ns">
- <!-- Generator: Sketch 3.0.4 (8053) - http://www.bohemiancoding.com/sketch -->
- <title>Pebble_Logo</title>
- <desc>Created with Sketch.</desc>
- <defs></defs>
- <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd" sketch:type="MSPage">
- <g id="Pebble_Logo" sketch:type="MSLayerGroup" transform="translate(0.000000, 1.000000)" fill="#000000">
- <g id="Group" sketch:type="MSShapeGroup">
- <path d="M0.1,8.2 L2,8.2 L2,12.5 C3.7,10 6.1,7.7 10,7.7 C14.7,7.7 19.4,11.5 19.4,17.8 L19.4,17.9 C19.4,24.2 14.6,28.1 10,28.1 C6.1,28.1 3.6,25.9 2,23.5 L2,33.8 L0.1,33.8 L0.1,8.2 L0.1,8.2 Z M17.3,18 L17.3,18 C17.3,12.8 13.8,9.6 9.7,9.6 C5.7,9.6 1.8,13 1.8,17.9 L1.8,18 C1.8,23 5.7,26.3 9.7,26.3 C13.9,26.2 17.3,23.2 17.3,18 L17.3,18 Z" id="Shape"></path>
- <path d="M46.5,23.4 L46.5,27.6 L44.6,27.6 L44.6,-0.2 L46.5,-0.2 L46.5,12.5 C48.2,10 50.6,7.7 54.5,7.7 C59.2,7.7 63.9,11.5 63.9,17.8 L63.9,17.9 C63.9,24.2 59.1,28.1 54.5,28.1 C50.6,28 48.1,25.8 46.5,23.4 L46.5,23.4 Z M61.9,18 L61.9,18 C61.9,12.8 58.4,9.6 54.3,9.6 C50.3,9.6 46.4,13 46.4,17.9 L46.4,18 C46.4,23 50.3,26.3 54.3,26.3 C58.5,26.2 61.9,23.2 61.9,18 L61.9,18 Z" id="Shape"></path>
- <path d="M69.5,23.4 L69.5,27.6 L67.6,27.6 L67.6,-0.2 L69.5,-0.2 L69.5,12.5 C71.2,10 73.6,7.7 77.5,7.7 C82.2,7.7 86.9,11.5 86.9,17.8 L86.9,17.9 C86.9,24.2 82.1,28.1 77.5,28.1 C73.6,28 71.1,25.8 69.5,23.4 L69.5,23.4 Z M84.9,18 L84.9,18 C84.9,12.8 81.4,9.6 77.3,9.6 C73.3,9.6 69.4,13 69.4,17.9 L69.4,18 C69.4,23 73.3,26.3 77.3,26.3 C81.5,26.2 84.9,23.2 84.9,18 L84.9,18 Z" id="Shape"></path>
- <path d="M90.6,-0.2 L92.5,-0.2 L92.5,27.5 L90.6,27.5 L90.6,-0.2 L90.6,-0.2 Z" id="Shape"></path>
- <path d="M25.2,19.9 C26,24 29.2,26.3 32.6,26.3 C35.6,26.3 37.7,25 39.3,23.3 L40.6,24.4 C38.6,26.5 36.3,28.1 32.6,28.1 C27.4,28 23,24 23,17.9 L23,17.8 C23,12.2 27,7.7 32.2,7.7 C36.6,7.7 39.7,10.6 40.7,14.8 C40.8,15.1 40.8,15.3 40.9,15.6 L25.2,19.9 L25.2,19.9 Z M38.7,14.5 C37.8,11.7 35.7,9.4 32.2,9.4 C28.4,9.4 25.4,12.6 25.1,16.9 L25.1,18.1 L38.7,14.5 L38.7,14.5 Z" id="Shape"></path>
- <path d="M98.3,19.9 C99.1,24 102.3,26.3 105.7,26.3 C108.7,26.3 110.8,25 112.4,23.3 L113.7,24.4 C111.7,26.5 109.4,28.1 105.7,28.1 C100.6,28.1 96.2,24 96.2,18 L96.2,17.9 C96.2,12.3 100.2,7.8 105.4,7.8 C109.8,7.8 112.9,10.7 113.9,14.9 C114,15.2 114,15.4 114.1,15.7 L98.3,19.9 L98.3,19.9 Z M111.8,14.5 C110.9,11.7 108.8,9.4 105.3,9.4 C101.5,9.4 98.5,12.6 98.2,16.9 L98.2,18.1 L111.8,14.5 L111.8,14.5 Z" id="Shape"></path>
- </g>
- </g>
- </g>
-</svg>
\ No newline at end of file
diff --git a/img/partners/pop.png b/img/partners/pop.png
deleted file mode 100755
index 7fc426b..0000000
Binary files a/img/partners/pop.png and /dev/null differ
diff --git a/img/partners/rank.svg b/img/partners/rank.svg
deleted file mode 100755
index 5650e83..0000000
--- a/img/partners/rank.svg
+++ /dev/null
@@ -1,146 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
-<svg version="1.1" id="HackerRank" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
- width="1189px" height="887px" viewBox="0 0 1189 887" enable-background="new 0 0 1189 887" xml:space="preserve">
-<g id="Hexagon">
- <g id="Hexagon_1_">
- <g>
- <linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="676.7515" y1="290.1465" x2="676.7515" y2="16.5">
- <stop offset="0" style="stop-color:#25A559"/>
- <stop offset="1" style="stop-color:#30CE68"/>
- </linearGradient>
- <path fill="url(#SVGID_1_)" d="M594.487,16.5c-14.651,0-61.362,22.151-111.534,49.901L870.55,290.146
- c-1.113-57.23-5.305-108.562-12.612-121.143c-6.163-10.626-37.215-33.152-76.09-57.697L678.193,51.472
- C639.37,31.112,606.378,16.5,594.487,16.5z"/>
- <linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="623.1313" y1="416.1641" x2="623.1313" y2="66.4014">
- <stop offset="0" style="stop-color:#25A559"/>
- <stop offset="1" style="stop-color:#30CE68"/>
- </linearGradient>
- <path fill="url(#SVGID_2_)" d="M375.408,131.953l492.351,284.211c2.708-35.907,3.643-82.633,2.791-126.018L482.953,66.401
- C444.942,87.423,404.974,111.636,375.408,131.953z"/>
- <linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="594.457" y1="511.7988" x2="594.457" y2="131.9531">
- <stop offset="0" style="stop-color:#25A559"/>
- <stop offset="1" style="stop-color:#30CE68"/>
- </linearGradient>
- <path fill="url(#SVGID_3_)" d="M375.408,131.953c-23.216,15.938-40.028,29.451-44.371,37.051
- c-4.447,7.779-7.735,30.065-9.881,59.246l491.18,283.549c23.83-16.282,41.171-30.111,45.603-37.803
- c4.396-7.614,7.659-29.314,9.821-57.832L375.408,131.953z"/>
- <linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="565.3306" y1="578.4492" x2="565.3306" y2="228.0391">
- <stop offset="0" style="stop-color:#25A559"/>
- <stop offset="1" style="stop-color:#30CE68"/>
- </linearGradient>
- <path fill="url(#SVGID_4_)" d="M812.516,511.679l-491.345-283.64c-2.725,36.841-3.612,84.725-2.649,128.712L702.56,578.449
- C741.149,557.216,782.142,532.444,812.516,511.679z"/>
- <linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="510.5405" y1="626.5" x2="510.5405" y2="356.751">
- <stop offset="0" style="stop-color:#25A559"/>
- <stop offset="1" style="stop-color:#30CE68"/>
- </linearGradient>
- <path fill="url(#SVGID_5_)" d="M318.522,356.751c1.22,55.576,5.381,104.831,12.515,117.245
- C348.286,504.032,560.028,626.5,594.487,626.5c14.314,0,59.225-21.174,108.073-48.051L318.522,356.751z"/>
- </g>
- </g>
- <g id="H_1_">
-
- <image overflow="visible" opacity="0.1" width="315" height="427" xlink:href="7820E5FF8C9DC0CC.png" transform="matrix(1 0 0 1 437 111)">
- </image>
- <g>
- <path fill="#FFFFFF" d="M646.273,345.368v105.574h-17.819c-3.621,0-6.551,2.935-6.551,6.545c0,2.37,1.256,4.44,3.138,5.591
- l40.05,38.391c1.197,1.564,3.574,2.753,5.697,2.753c2.168,0,4.086-1.128,5.275-2.753l42.669-38.397
- c1.873-1.151,3.123-3.221,3.123-5.584c0-3.61-2.935-6.545-6.55-6.545h-17.881l-0.153-255.099c0-3.613-2.868-6.547-6.483-6.547
- h-37.928c-3.62,0-6.585,2.934-6.585,6.547v98.478l-103.554-0.014v-102.25h17.821c3.619,0,6.55-2.935,6.55-6.547
- c0-2.37-1.256-4.438-3.137-5.59l-40.05-38.389c-1.198-1.565-3.575-2.755-5.698-2.755c-2.167,0-4.086,1.13-5.274,2.755
- l-42.671,38.396c-1.873,1.15-3.122,3.219-3.122,5.582c0,3.612,2.935,6.547,6.551,6.547h17.881l0.154,255.099
- c0,3.613,2.868,6.547,6.483,6.547h37.928c3.62,0,6.585-2.934,6.585-6.547V345.368H646.273z"/>
- </g>
- </g>
-</g>
-<path fill-rule="evenodd" clip-rule="evenodd" fill="#39424E" d="M802.556,849.894c-10.98-17.954-22.018-35.873-33.018-53.814
- c-0.942-1.535-1.744-3.157-2.78-5.045c2.453-0.742,4.271-1.239,6.055-1.84c16.54-5.562,26.731-19.195,27.256-36.434
- c0.623-20.414-10.072-34.703-29.938-39.642c-4.493-1.116-9.155-2.005-13.761-2.12c-14.831-0.369-29.672-0.358-44.51-0.438
- c-8.627-0.046-8.781,0.136-8.782,8.535c-0.007,43.833-0.006,87.665,0.001,131.497c0,1.551,0.017,3.108,0.156,4.651
- c0.194,2.154,1.307,3.603,3.596,3.639c4.658,0.073,9.317,0.06,13.976,0.03c2.265-0.015,3.492-1.365,3.799-3.479
- c0.197-1.355,0.122-2.756,0.122-4.135c0.006-17.257,0.004-34.515,0.004-51.77c0-1.877,0-3.753,0-6.656
- c5.193,0,9.644,0.148,14.079-0.052c2.957-0.134,4.757,0.899,6.215,3.515c3.696,6.627,7.665,13.101,11.532,19.632
- c7.645,12.913,15.341,25.797,22.907,38.758c1.607,2.752,3.343,4.56,6.875,4.295c3.775-0.281,7.593,0.043,11.383-0.099
- c2.447-0.092,5.467,1.046,6.956-1.982C806.075,854.104,803.862,852.029,802.556,849.894z M753.147,772.925
- c-8.726,0.692-17.542,0.271-26.32,0.288c-0.475,0.001-0.951-0.276-1.745-0.523c0-13.871,0-27.737,0-41.621
- c0.237-0.212,0.486-0.631,0.744-0.637c11.341-0.264,22.701-1.052,33.976,0.923c1.688,0.297,3.371,0.72,4.99,1.277
- c11.755,4.056,17.083,16.171,12.178,27.619c-1.704,3.977-4.533,7.148-8.497,8.604C763.517,770.674,758.341,772.514,753.147,772.925z
- M437.371,816.521c-0.075,1.663-0.211,3.326-0.214,4.99c-0.021,10.533,0.021,21.064-0.028,31.598
- c-0.023,5.083-0.699,5.75-5.602,5.837c-3.452,0.062-6.91,0.104-10.358-0.026c-3.58-0.136-4.432-1.092-4.646-4.737
- c-0.061-1.033-0.018-2.072-0.018-3.108c0-47.309,0-94.619,0.001-141.929c0-1.209-0.053-2.421,0.025-3.624
- c0.212-3.255,1.188-4.449,4.325-4.593c3.963-0.179,7.946-0.173,11.91-0.003c3.236,0.138,4.136,1.213,4.348,4.521
- c0.088,1.376,0.031,2.761,0.031,4.143c0.001,26.418-0.003,52.835,0.013,79.252c0.001,1.829,0.15,3.658,0.276,6.486
- c1.854-1.541,3.033-2.396,4.066-3.4c10.397-10.108,20.818-20.196,31.114-30.407c2.117-2.101,4.29-3.141,7.297-3.029
- c5.001,0.185,10.014,0.031,15.02,0.062c2.041,0.012,4.327-0.331,5.192,2.283c0.796,2.402-0.726,3.853-2.314,5.29
- c-12.549,11.351-25.081,22.72-37.611,34.09c-1.521,1.381-3.004,2.806-4.736,4.428c1.061,1.213,1.876,2.281,2.827,3.211
- c14.306,14.015,28.63,28.011,42.95,42.012c0.864,0.845,1.985,1.557,2.521,2.574c0.661,1.259,1.467,3.021,1.042,4.107
- c-0.425,1.09-2.219,2.078-3.542,2.285c-2.36,0.37-4.819,0.174-7.235,0.118c-4.641-0.108-9.768,0.893-13.778-0.772
- c-3.831-1.589-6.545-5.936-9.67-9.149c-9.27-9.528-18.496-19.099-27.747-28.646c-1.417-1.462-2.872-2.885-4.31-4.326
- C438.137,816.211,437.754,816.365,437.371,816.521z M1051.262,816.666c0,3.262,0,6.524,0,9.787c0,8.975,0.051,17.95-0.021,26.925
- c-0.038,4.574-0.963,5.461-5.44,5.562c-3.278,0.075-6.56,0.075-9.837,0.001c-4.534-0.102-5.283-0.896-5.48-5.536
- c-0.044-1.034-0.017-2.071-0.017-3.106c0-46.946-0.003-93.893,0.001-140.839c0-8.5,0.106-8.595,8.732-8.597
- c2.589,0,5.187-0.114,7.765,0.063c2.856,0.197,3.97,1.371,4.248,4.191c0.135,1.368,0.05,2.759,0.05,4.14
- c0.002,26.407,0.002,52.814,0.002,79.222c0,1.866,0,3.732,0,6.969c2.25-1.926,3.655-3.002,4.915-4.229
- c9.891-9.632,19.823-19.225,29.58-28.989c2.618-2.62,5.269-4.04,9.082-3.767c4.465,0.319,8.97,0.048,13.457,0.087
- c2.19,0.019,4.702-0.509,5.796,2.221c1.086,2.716-1.014,4.126-2.641,5.606c-12.515,11.379-25.058,22.727-37.584,34.093
- c-1.392,1.264-2.737,2.576-4.508,4.247c1.323,1.427,2.399,2.688,3.58,3.844c14.18,13.885,28.377,27.754,42.568,41.627
- c0.74,0.724,1.738,1.332,2.146,2.212c0.605,1.308,1.401,3.038,0.979,4.161c-0.404,1.075-2.239,2.225-3.481,2.268
- c-6.379,0.221-12.782,0.322-19.146-0.055c-1.741-0.104-3.653-1.738-5.017-3.131c-11.477-11.707-22.84-23.525-34.248-35.299
- c-1.399-1.443-2.86-2.826-4.292-4.238C1052.052,816.293,1051.657,816.479,1051.262,816.666z M608.178,800.695
- c-1.753-25.802-19.667-43.087-43.333-44.484c-20.575-1.215-36.674,6.433-47.712,23.97c-6.388,10.148-8.449,21.474-7.34,33.263
- c1.978,21.008,12.276,36.321,32.109,44.378c11.402,4.633,23.237,4.54,35.049,1.426c10.544-2.779,18.974-8.851,25.896-17.134
- c3.062-3.665,2.916-5.192-0.651-8.146c-1.593-1.319-3.25-2.562-4.881-3.837c-6.254-4.887-6.168-4.81-11.367,1.084
- c-8.784,9.958-19.796,13.759-32.632,10.229c-12.246-3.366-19.378-11.876-22.137-25.259c2.66-0.128,4.672-0.308,6.686-0.31
- c20.53-0.021,41.059-0.012,61.589-0.015c1.379,0,2.766,0.059,4.138-0.052c3.623-0.289,4.509-1.045,4.704-4.775
- C608.473,807.597,608.412,804.13,608.178,800.695z M531.95,797.71c0.475-1.847,0.67-3.347,1.237-4.689
- c7.092-16.801,24.851-22.39,39.94-15.782c8.339,3.65,12.387,10.892,13.771,20.472C568.269,797.71,550.432,797.71,531.95,797.71z
- M290.821,852.693c-0.5-6.875-0.996-13.764-1.089-20.651c-0.174-12.946,0.107-25.899-0.104-38.846
- c-0.312-19.214-10.438-32.073-28.751-35.919c-15.866-3.331-30.884-0.615-44.596,8.29c-1.727,1.121-3.357,2.446-4.847,3.872
- c-2.632,2.517-2.718,3.844-0.586,6.698c1.134,1.52,2.427,2.92,3.652,4.371c5.222,6.182,5.168,6.107,11.792,1.26
- c9.521-6.971,20.148-8.881,31.433-5.764c8.238,2.275,12.553,9.708,10.994,18.251c-5.744,0.246-11.596,0.438-17.441,0.764
- c-9.167,0.511-18.222,1.757-26.835,5.107c-8.14,3.165-15.195,7.912-18.337,16.432c-6.456,17.499-0.035,35.738,19,42.411
- c8.201,2.875,16.618,2.837,25.057,1.466c7.506-1.221,13.972-4.749,20.381-10.481c0.489,2.115,0.766,3.229,1.002,4.352
- c0.827,3.924,1.487,4.528,5.496,4.635c2.761,0.073,5.526,0.061,8.287,0.009C290.498,858.854,291.198,857.887,290.821,852.693z
- M234.292,841.606c-4.479-1.563-7.821-4.248-8.971-9.146c-1.327-5.649,0.048-9.812,4.893-13.022c2.269-1.504,4.806-2.783,7.4-3.585
- c10.141-3.133,20.587-3.623,31.413-3.438C271.757,833.325,253.469,848.298,234.292,841.606z M901.597,853.179
- c-0.584-6.351-1.189-12.723-1.283-19.093c-0.216-14.673,0.14-29.358-0.238-44.024c-0.39-15.074-9.269-26.551-23.493-31.465
- c-9.229-3.19-18.668-3.219-28.124-1.603c-9.157,1.563-17.535,5.13-24.77,11.08c-4.408,3.625-4.526,5.065-1.005,9.368
- c1.421,1.736,2.854,3.466,4.339,5.147c3.252,3.687,4.364,3.836,8.097,0.695c7.657-6.441,16.465-8.983,26.398-8.565
- c9.529,0.4,18.686,5.205,18.537,19.196c-1.91,0.199-3.574,0.446-5.248,0.533c-4.655,0.238-9.32,0.312-13.969,0.63
- c-8.632,0.592-17.159,1.829-25.309,4.915c-7.648,2.896-14.146,7.32-17.945,14.802c-8.156,16.064-1.534,35.917,15.083,42.77
- c15.802,6.516,31.378,5.499,45.59-5.07c0.907-0.674,1.919-1.206,3.153-1.971c0.37,1.576,0.623,2.742,0.918,3.896
- c1.046,4.095,1.41,4.424,5.602,4.522c2.934,0.07,5.873,0.08,8.805-0.006C901.161,858.811,902.002,857.579,901.597,853.179z
- M859.122,842.474c-4.504,0.558-9.328,0.069-13.785-0.926c-5.454-1.216-8.915-4.932-9.563-10.854
- c-0.656-5.973,2.095-9.932,7.159-12.539c1.982-1.021,4.05-1.975,6.187-2.58c9.878-2.794,20.005-3.29,30.439-3.26
- C882.253,824.264,874.651,840.553,859.122,842.474z M942.122,766.977c2.102-1.47,3.477-2.467,4.888-3.41
- c12.691-8.48,26.351-9.839,40.494-4.716c12.133,4.396,18.315,14.146,21.158,26.193c0.902,3.82,1.248,7.849,1.274,11.786
- c0.128,18.459,0.058,36.919,0.052,55.379c0,1.208,0.319,2.609-0.182,3.57c-0.633,1.215-1.897,2.865-2.989,2.943
- c-4.633,0.334-9.304,0.223-13.958,0.133c-1.979-0.038-3.174-1.259-3.336-3.269c-0.11-1.371-0.082-2.757-0.082-4.136
- c-0.006-14.838,0.068-29.675-0.049-44.511c-0.036-4.643-0.329-9.314-0.945-13.914c-1.039-7.746-4.01-14.508-12.166-17.062
- c-8.576-2.686-16.763-1.75-23.726,4.5c-5.093,4.572-7.652,10.599-8.82,17.171c-0.66,3.714-0.929,7.539-0.957,11.316
- c-0.107,14.491-0.026,28.984-0.053,43.476c-0.011,5.984-0.535,6.479-6.489,6.527c-2.933,0.024-5.867,0.062-8.798-0.014
- c-4.324-0.113-5.158-0.939-5.331-5.107c-0.057-1.377-0.071-2.725-0.072-4.104c0-3.017,0.036-49.375-0.052-74.045
- c-0.014-3.961-0.527-7.916-0.65-11.878c-0.131-4.23,0.772-5.131,5.074-5.246c3.103-0.082,6.21-0.06,9.315-0.008
- c4.777,0.077,5.204,0.488,5.865,5.201C941.703,764.576,941.858,765.394,942.122,766.977z M360.918,861.674
- c-15.232-0.297-28.572-4.865-39.291-15.942c-7.302-7.547-11.657-16.661-13.251-26.971c-1.944-12.569-0.759-24.781,5.403-36.177
- c8.153-15.074,21.062-23.282,37.754-25.914c10.669-1.682,20.953-0.315,30.833,4.084c5.936,2.643,11.035,6.4,15.13,11.44
- c2.616,3.218,2.434,4.835-0.8,7.319c-2.871,2.207-5.853,4.271-8.833,6.33c-2.158,1.49-4.217,1.405-5.891-0.804
- c-7.372-9.724-17.393-11.977-28.64-9.523c-11.62,2.535-19.049,10.087-22.495,21.337c-2.873,9.379-2.403,18.724,1.55,27.806
- c9.229,21.205,38.355,23.294,50.039,8.586c2.961-3.728,3.904-3.596,7.744-0.876c2.251,1.595,4.46,3.252,6.641,4.943
- c3.968,3.078,4.214,4.804,0.948,8.431c-6.273,6.967-13.866,11.951-23.055,14.037C370.198,860.804,365.519,861.067,360.918,861.674z
- M648.623,766.669c1.676-1.272,2.628-1.977,3.56-2.705c9.124-7.135,19.471-9.195,30.729-7.338c4.304,0.71,5.161,1.862,4.74,6.329
- c-0.275,2.915-0.724,5.814-1.151,8.714c-0.735,4.998-1.885,5.629-6.875,5.065c-3.727-0.419-7.59-0.702-11.273-0.188
- c-6.768,0.944-11.596,4.987-14.749,11.011c-3.021,5.772-4.322,11.957-4.32,18.445c0.003,15.008-0.003,30.016-0.006,45.024
- c0,1.208,0.074,2.423-0.037,3.621c-0.275,2.979-1.246,4.13-4.106,4.242c-4.135,0.163-8.284,0.165-12.417,0.002
- c-3.04-0.121-3.842-1.041-4.154-4.161c-0.155-1.539-0.08-3.103-0.08-4.654c-0.004-18.459-0.028-54.488-0.028-55.376
- c-0.047-9.829-0.322-19.657-0.555-29.485c-0.146-6.164,0.209-6.615,6.15-6.671c2.76-0.026,5.521-0.048,8.28,0.008
- c4.513,0.091,4.833,0.385,5.746,4.876C648.243,764.247,648.356,765.076,648.623,766.669z M91.799,792.674
- c0,0-0.015,61.259-0.015,62.641c0,2.427-1.599,3.6-4.097,3.611c-4.488,0.02-8.977,0.023-13.464-0.013
- c-2.513-0.021-3.974-1.41-3.974-3.87c0-1.323,0.002-136.187,0.002-136.725c0.001-7.511,0.26-7.743,7.937-7.767
- c2.417-0.008,4.834-0.031,7.251,0.011c5.574,0.102,6.284,0.803,6.353,6.266c0.035,2.762,0.007,52.401,0.007,55.025h69.891
- c0-2.624-0.028-52.005,0.007-54.767c0.069-5.463,0.779-6.164,6.353-6.266c2.416-0.043,4.833-0.019,7.25-0.011
- c7.677,0.023,7.936,0.255,7.937,7.767c0,0.538,0.003,135.401,0.003,136.724c0,2.46-1.461,3.85-3.974,3.871
- c-4.488,0.036-8.976,0.032-13.464,0.013c-2.498-0.013-4.097-1.185-4.097-3.612c0-1.382-0.015-62.898-0.015-62.898H91.799z"/>
-</svg>
diff --git a/img/partners/sabre.png b/img/partners/sabre.png
deleted file mode 100755
index f42e612..0000000
Binary files a/img/partners/sabre.png and /dev/null differ
diff --git a/img/partners/sendgrid.png b/img/partners/sendgrid.png
deleted file mode 100755
index a9ed162..0000000
Binary files a/img/partners/sendgrid.png and /dev/null differ
diff --git a/img/partners/seoul.png b/img/partners/seoul.png
deleted file mode 100755
index 6f2b39d..0000000
Binary files a/img/partners/seoul.png and /dev/null differ
diff --git a/img/partners/showtech.png b/img/partners/showtech.png
deleted file mode 100755
index 098fba7..0000000
Binary files a/img/partners/showtech.png and /dev/null differ
diff --git a/img/partners/sleep.png b/img/partners/sleep.png
deleted file mode 100755
index 8460ebc..0000000
Binary files a/img/partners/sleep.png and /dev/null differ
diff --git a/img/partners/smu_lyle.png b/img/partners/smu_lyle.png
deleted file mode 100755
index 55f5e60..0000000
Binary files a/img/partners/smu_lyle.png and /dev/null differ
diff --git a/img/partners/statefarm.png b/img/partners/statefarm.png
deleted file mode 100755
index 7d0763b..0000000
Binary files a/img/partners/statefarm.png and /dev/null differ
diff --git a/img/partners/ti.png b/img/partners/ti.png
deleted file mode 100755
index 6d3fc02..0000000
Binary files a/img/partners/ti.png and /dev/null differ
diff --git a/img/partners/tzu.png b/img/partners/tzu.png
deleted file mode 100755
index 76f9a5d..0000000
Binary files a/img/partners/tzu.png and /dev/null differ
diff --git a/img/partners/uber.png b/img/partners/uber.png
deleted file mode 100755
index 31cb1df..0000000
Binary files a/img/partners/uber.png and /dev/null differ
diff --git a/img/partners/utaeng.png b/img/partners/utaeng.png
deleted file mode 100755
index 4a0f371..0000000
Binary files a/img/partners/utaeng.png and /dev/null differ
diff --git a/img/partners/utd_jonsson.gif b/img/partners/utd_jonsson.gif
deleted file mode 100755
index c00d203..0000000
Binary files a/img/partners/utd_jonsson.gif and /dev/null differ
diff --git a/img/partners/zico.png b/img/partners/zico.png
deleted file mode 100755
index 79eb1d5..0000000
Binary files a/img/partners/zico.png and /dev/null differ
diff --git a/img/shapes/circle.svg b/img/shapes/circle.svg
old mode 100755
new mode 100644
diff --git a/img/shapes/halfcircle.svg b/img/shapes/halfcircle.svg
old mode 100755
new mode 100644
diff --git a/img/shapes/rainbow.svg b/img/shapes/rainbow.svg
old mode 100755
new mode 100644
diff --git a/img/shapes/rectangle.svg b/img/shapes/rectangle.svg
old mode 100755
new mode 100644
diff --git a/img/shapes/square.svg b/img/shapes/square.svg
old mode 100755
new mode 100644
diff --git a/img/shapes/triangle.svg b/img/shapes/triangle.svg
old mode 100755
new mode 100644
diff --git a/img/shapes/wavy.svg b/img/shapes/wavy.svg
old mode 100755
new mode 100644
diff --git a/index.html b/index.html
index df872b7..97356a2 100644
--- a/index.html
+++ b/index.html
@@ -1,166 +1,236 @@
<!DOCTYPE html>
<html>
- <head>
- <link rel="stylesheet" href="css/bootstrap.min.css">
- <link rel="stylesheet" href="css/style.css">
- <link rel="stylesheet" href="css/font-awesome.min.css">
-
- <title></title>
- </head>
- <body>
- <div id="shapes">
- <object type="image/svg+xml" data="img/shapes/circle.svg"></object>
- <object type="image/svg+xml" data="img/shapes/halfcircle.svg"></object>
- <object type="image/svg+xml" data="img/shapes/rainbow.svg"></object>
- <object type="image/svg+xml" data="img/shapes/rectangle.svg"></object>
- <object type="image/svg+xml" data="img/shapes/square.svg"></object>
- <object type="image/svg+xml" data="img/shapes/triangle.svg"></object>
- <object type="image/svg+xml" data="img/shapes/wavy.svg"></object>
- </div>
- <div id="background"></div>
- <nav class="navbar navbar-fixed-top">
- <div class="container-fluid">
- <div id="navbar" class="navbar-collapse collapse">
- <ul class="nav nav-pills navbar-right">
- <li class="active"><a href="#">Home</a></li>
- <li><a href="#">Profile</a></li>
- <li><a href="#">Messages</a></li>
- </ul>
- </div>
- </div>
- </nav>
- <header class="container">
- <div class="jumbotron">
- <div class="logo"></div>
- <h1>hackdfw</h1>
- <button class="btn">Register</button>
- <button class="btn">Sponsor</button>
- </div>
- </header>
- <section class="quote container">
- <img class="col-md-8 col-md-offset-2" src="img/Group.svg">
- </section>
- <section class="quote container">
- <p class="col-md-8 col-md-offset-2">Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially.</p>
- </section>
- <section class="container" id="faq">
- <div class="col-md-8 col-md-offset-2">
- <div class="row text-center">
- <h2>FAQ</h2>
- </div>
- <div class="question col-md-6">
- <h3>Omg! What if like there is a question?</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
- </div>
- <div class="question col-md-6">
- <h3>Omg! What if like there is a question?</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
- </div>
- <div class="question col-md-6">
- <h3>Omg! What if like there is a question?</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
- </div>
- <div class="question col-md-6">
- <h3>Omg! What if like there is a question?</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
- </div>
- <div class="question col-md-6">
- <h3>Omg! What if like there is a question?</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
- </div>
- <div class="question col-md-6">
- <h3>Omg! What if like there is a question?</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
- </div>
- </div>
- </section>
- <section class="quote container">
- <img class="col-md-8 col-md-offset-2" src="img/Superhero.svg" width="200px">
- </section>
- <section class="container" id="sponsors">
- <div class="row text-center">
- <h2>Sponsors</h2>
- </div>
- <div class="row text-center partner">
- <a href="http://www.intuit.com/" target="_blank"><img src="img/partners/intuit.png" alt="intuit"></a>
- </div>
- <div class="row text-center gold">
- <a href="http://dfwexcellerator.com/" target="_blank"><img src="img/partners/dfwtech.png" alt="DFW Technologies"></a>
- <a href="http://www2.deloitte.com/us/en.html" target="_blank"><img src="img/partners/delo.png" alt="Deloitte"></a>
- <a href="https://developer.sabre.com/" target="_blank"><img src="img/partners/sabre.png" alt="Sabre"></a>
- <a href="http://www.att.com/" target="_blank"><img src="img/partners/att.png" alt="At&t"></a>
- <a href="https://www.statefarm.com/" target="_blank"><img src="img/partners/statefarm.png" alt="Statefarm"></a>
- <a href="http://www.microsoft.com/" target="_blank"><img src="img/partners/microsoft.png" alt="Microsoft"></a>
- <a href="http://www.icodeinc.com/" target="_blank"><img src="img/partners/icode.png" alt="iCode"></a>
- </div>
- <div class="row text-center trench">
- <a href="http://www.mashery.com/" target="_blank"><img src="img/partners/mashery.png" alt="Mashery"></a>
- <a href="https://www.uber.com/" target="_blank"><img src="img/partners/uber.png" alt="Uber" width="20%"></a>
- <a href="http://www.uta.edu/engineering/" target="_blank"><img src="img/partners/utaeng.png" width="30%" alt="UT Arlington"></a>
- <a href="http://www.noddfw.com/" target="_blank"><img src="img/partners/nod.png" alt="Nod."></a>
- <a href="http://seoul.globalhackathon.io/" target="_blank"><img src="img/partners/seoul.png" alt="Global Hackathon @ Seoul"></a>
- <a href="http://www.ilumi.co/" target="_blank"><img src="img/partners/ilumi.png" alt="Ilumi" width="15%"></a>
- <a href="https://www.call-em-all.com/" target="_blank"><img src="img/partners/call.png" alt="Call Em All"></a>
- <a href="http://www.gogosqueez.com/" target="_blank"><img src="img/partners/gogo.png" alt="GoGo Squeez"></a>
- <a href="http://www.momandpopcorn.com/" target="_blank"><img src="img/partners/pop.png" alt="Mom & Pop Corn"></a>
- <a href="http://www.mroads.com/" target="_blank"><img src="img/partners/mroads.png" alt="mroads"></a>
- <a href="http://www-01.ibm.com/software/bluemix/" target="_blank"><img src="img/partners/ibm.png" width="30%" alt="IBM Bluemix" /></a>
- <a href="http://www.us.tzuchi.org/us/en/" target="_blank"><img src="img/partners/tzu.png" alt="Tzu chi" /></a>
- <a href="http://sprayable.co/" target="_blank"><img src="img/partners/sleep.png" alt="Sprayable Sleep" /></a>
- <a href="http://www.kindsnacks.com/" target="_blank"><img src="img/partners/kind.jpg" alt="Kind Snacks" /></a>
- <a href="http://www.illyissimo.com/" target="_blank"><img src="img/partners/illyis.png" alt="Illy Issimo" /></a>
- <a href="http://zico.com/" target="_blank"><img src="img/partners/zico.png" alt="Zico Premium Coconut Water" /></a>
- <a href="https://www.hackerrank.com/" target="_blank"><img src="img/partners/rank.svg" alt="Hacker Rank" /></a>
- <a href="https://getpebble.com" target="_blank"><img src="img/partners/pebble.svg" alt="Get Pebble" /></a>
- <a href="https://fidelity.com" target="_blank"><img src="img/partners/fidelity.png" alt="fidelity" /></a>
- <a href="https://sendgrid.com" target="_blank"><img src="img/partners/sendgrid.png" alt="Sendgrid" /></a>
- <a href="https://google.com" target="_blank"><img src="img/partners/google.png" alt="Google" /></a>
- <a href="https://ti.com" target="_blank"><img src="img/partners/ti.png" alt="Texas Instruments" /></a>
- <a href="https://gamestop.com" target="_blank"><img src="img/partners/gamestop.png" alt="Gamestop" /></a>
- <a href="http://www.showtechproductions.com/" target="_blank"><img src="img/partners/showtech.png" alt="Show Tech Productions" /></a>
- </div>
- </section>
- <section class="quote container">
- <img class="col-md-8 col-md-offset-2" src="img/Contact.svg">
- </section>
- <section class="contact container">
- <div class="row text-center">
- <h2>Contact</h2>
- </div>
- <div class="row">
- <div class="col-md-8">
- <h3>Hallo!</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
- <a href="#">[email protected]</a>
- <h3>Hallo!</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
- <a href="#">[email protected]</a>
- </div>
- <div class="col-md-4">
- <h3>Hallo!</h3>
- <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p>
- <a href="#">[email protected]</a>
- </div>
- </div>
- </section>
- <footer>
- <div class="container">
- <p class="pull-left">
- &copy; 2014 HackDFW. Made with <span class="fa fa-heart" style="color: #EA4E4E"></span> in Dallas.
- <a href="http://hackcodeofconduct.org/hackdfw" target="_blank">Code of Conduct</a>
- </p>
- <ul id="social" class="pull-right">
- <li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a> </li>
- <li><a href="https://facebook.com/hackdfw"><i class="fa fa-facebook"></i></a> </li>
- <li><a href="https://twitter.com/hackdfw"><i class="fa fa-twitter"></i></a> </li>
- </ul>
- </div>
- </footer>
-
- <script src="js/jquery.min.js"></script>
- <script src="js/bootstrap.min.js"></script>
- <script src="js/two.min.js"></script>
- <script src="js/underscore-min.js"></script>
- <script src="js/javascript.js"></script>
- </body>
+<head>
+ <link rel="icon" href="img/Logo.png" type="image/png" />
+ <link rel="icon" href="favicon.ico" type="image/x-icon" />
+
+ <link rel="stylesheet" href="css/bootstrap.min.css">
+ <link rel="stylesheet" href="css/style.css">
+ <link rel="stylesheet" href="css/font-awesome.min.css">
+
+ <title>HackDFW 2016 | The design-thinking hackathon of Dallas</title>
+ <meta name="description" content="HackDFW is the design-thinking hackathon of Dallas. It is a place where you can be part of the nebulous, wondrous, awe-inspiring, frustrating-yet-glorious process of creating. A place where ideas aren't limited by fear or doubt, just 24 hours." />
+ <meta name="keywords" content="hackathon, hackdfw, dallas, design-thinking, hacking, competition, ian macalinao, is awesome" />
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
+</head>
+<body>
+
+ <div id="shapes">
+ <object type="image/svg+xml" data="img/shapes/circle.svg"></object>
+ <object type="image/svg+xml" data="img/shapes/halfcircle.svg"></object>
+ <object type="image/svg+xml" data="img/shapes/rainbow.svg"></object>
+ <object type="image/svg+xml" data="img/shapes/rectangle.svg"></object>
+ <object type="image/svg+xml" data="img/shapes/square.svg"></object>
+ <object type="image/svg+xml" data="img/shapes/triangle.svg"></object>
+ </div>
+
+ <div id="background"></div>
+
+ <nav class="navbar navbar-fixed-top">
+ <div class="container-fluid">
+ <div id="navbar" class="navbar-collapse collapse">
+ <ul class="nav nav-pills navbar-right">
+ <li class="active"><a href="#overview">Overview</a></li>
+ <li><a href="#faq">FAQ</a></li>
+ <li><a href="#sponsors">Sponsors</a></li>
+ <li><a href="#contact">Contact Us</a></li>
+ </ul>
+ </div>
+ </div>
+ </nav>
+
+ <section class="container" id="overview">
+ <div class="jumbotron">
+ <div class="logo"></div>
+ <h1>HackDFW</h1>
+ <p class="subtitle">April 16-17, 2016</p>
+ <a class="btn" href="http://app.hackdfw.com/registration">Register</a>
+ <a class="btn" href="http://hackdfw.com/sponsorship.pdf">Sponsor</a>
+ </div>
+ </section>
+
+ <section class="quote container">
+ <p class="col-md-8 col-md-offset-2"><i>HackDFW is the design-thinking hackathon of Dallas.</i> <br>It is a place where you can be part of the nebulous, wondrous, awe-inspiring, frustrating-yet-glorious process of creating. A place where ideas aren't limited by fear or doubt, just 24 hours.</p>
+ </section>
+
+ <section class="quote container">
+ <img class="col-md-8 col-md-offset-2" src="img/Group.svg">
+ </section>
+
+ <section class="quote container">
+ <p class="col-md-8 col-md-offset-2"><i>What is design thinking?</i> <br>A way of problem solving that allows you to create innovative solutions rooted in people's needs through collaboration, empathy and iteration.</p>
+ </section>
+
+ <section class="container" id="faq">
+ <div class="col-md-8 col-md-offset-2">
+ <div class="row text-center">
+ <h2>FAQ</h2>
+ </div>
+ <div class="question col-md-6">
+ <h3>Making a trip to Dallas?</h3>
+ <p>The gates will open on Saturday, April 16th at 10:00am and close on Sunday, April 17th. HackDFW ends by 5:00pm.</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>Who can attend?</h3>
+ <p>All creators are welcome! This includes high schoolers, undergraduate students, graduate students, and professionals!</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>How big are teams?</h3>
+ <p>Teams are composed of 2-5 people. You can do it alone, but it'll be less fun!</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>What if I don't have teammates?</h3>
+ <p>We'll have a scheduled time where people can form teams after the opening ceremony. Before then, join us at the <a href="http://facebook.com/groups/hackdfw">HackDFW Attendees Page</a>! </p>
+ </div>
+ <div class="question col-md-6">
+ <h3>How much does this event cost?</h3>
+ <p>HackDFW is 100% free for students! This includes WiFi, food, drinks, and miscellaneous swag for the entire hackathon!</p>
+ <p>A limited number of professionals will be welcomed to participate at a cost. We will be announcing pricing details at registration launch! </p>
+ </div>
+ <div class="question col-md-6">
+ <h3>What should I bring?</h3>
+ <p>Laptops, chargers, cell phones, and of course passion are helpful. Other useful items include: toiletries, a change of clothes, a pillow, some earplugs, an eye mask, a jacket, and...deodorant.</p>
+ <p>Knives, firearms, and other dangerous things are not permitted at the event.</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>What kind of hardware will you have?</h3>
+ <p>We will have a variety of hardware available for use. A full hardware list will be available soon!</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>Are we allowed to build on past projects?</h3>
+ <p>A hackathon is an experience to build something new within a set amount of time. Therefore, you cannot work on past projects. However, using your own open-source or third party libraries is fine, so long as the project is new.</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>Will there be buses to HackDFW?</h3>
+ <p>Yes! We are currently finalizing our bussed regions, but will be initially dependent on historic attendance record and refined by registration numbers.</p>
+ </div>
+ <div class="question col-md-6">
+ <h3>Will HackDFW provide reimbursements?</h3>
+ <p>We will be providing reimbursements to a select percentage of out-of-state students only. </p>
+ </div>
+ <div class="question col-md-6">
+ <h3>Where will it be?</h3>
+ <p>Stay tuned for our venue reveal!</p>
+ </div>
+ </div>
+ </section>
+
+ <section class="quote container">
+ <img class="col-md-8 col-md-offset-2" src="img/Superhero.svg" width="200px">
+ </section>
+
+ <section class="container" id="sponsors">
+ <div class="row text-center">
+ <h2>Sponsors</h2>
+ </div>
+ <div class="row text-center">
+ <h1><i>TBA</i></h1>
+ </div>
+ <!-- No, you sneaky hackers. The below comments are not our finalized sponsors! Please wait like everyone else :).
+ <div class="row text-center partner">
+ <a href="http://www.intuit.com/" target="_blank"><img src="img/partners/intuit.png" alt="intuit"></a>
+ </div>
+ <div class="row text-center gold">
+ <a href="http://dfwexcellerator.com/" target="_blank"><img src="img/partners/dfwtech.png" alt="DFW Technologies"></a>
+ <a href="http://www2.deloitte.com/us/en.html" target="_blank"><img src="img/partners/delo.png" alt="Deloitte"></a>
+ <a href="https://developer.sabre.com/" target="_blank"><img src="img/partners/sabre.png" alt="Sabre"></a>
+ <a href="http://www.att.com/" target="_blank"><img src="img/partners/att.png" alt="At&t"></a>
+ <a href="https://www.statefarm.com/" target="_blank"><img src="img/partners/statefarm.png" alt="Statefarm"></a>
+ <a href="http://www.microsoft.com/" target="_blank"><img src="img/partners/microsoft.png" alt="Microsoft"></a>
+ <a href="http://www.icodeinc.com/" target="_blank"><img src="img/partners/icode.png" alt="iCode"></a>
+ </div>
+ <div class="row text-center trench">
+ <a href="http://www.mashery.com/" target="_blank"><img src="img/partners/mashery.png" alt="Mashery"></a>
+ <a href="https://www.uber.com/" target="_blank"><img src="img/partners/uber.png" alt="Uber" width="20%"></a>
+ <a href="http://www.uta.edu/engineering/" target="_blank"><img src="img/partners/utaeng.png" width="30%" alt="UT Arlington"></a>
+ <a href="http://www.noddfw.com/" target="_blank"><img src="img/partners/nod.png" alt="Nod."></a>
+ <a href="http://seoul.globalhackathon.io/" target="_blank"><img src="img/partners/seoul.png" alt="Global Hackathon @ Seoul"></a>
+ <a href="http://www.ilumi.co/" target="_blank"><img src="img/partners/ilumi.png" alt="Ilumi" width="15%"></a>
+ <a href="https://www.call-em-all.com/" target="_blank"><img src="img/partners/call.png" alt="Call Em All"></a>
+ <a href="http://www.gogosqueez.com/" target="_blank"><img src="img/partners/gogo.png" alt="GoGo Squeez"></a>
+ <a href="http://www.momandpopcorn.com/" target="_blank"><img src="img/partners/pop.png" alt="Mom & Pop Corn"></a>
+ <a href="http://www.mroads.com/" target="_blank"><img src="img/partners/mroads.png" alt="mroads"></a>
+ <a href="http://www-01.ibm.com/software/bluemix/" target="_blank"><img src="img/partners/ibm.png" width="30%" alt="IBM Bluemix" /></a>
+ <a href="http://www.us.tzuchi.org/us/en/" target="_blank"><img src="img/partners/tzu.png" alt="Tzu chi" /></a>
+ <a href="http://sprayable.co/" target="_blank"><img src="img/partners/sleep.png" alt="Sprayable Sleep" /></a>
+ <a href="http://www.kindsnacks.com/" target="_blank"><img src="img/partners/kind.jpg" alt="Kind Snacks" /></a>
+ <a href="http://www.illyissimo.com/" target="_blank"><img src="img/partners/illyis.png" alt="Illy Issimo" /></a>
+ <a href="http://zico.com/" target="_blank"><img src="img/partners/zico.png" alt="Zico Premium Coconut Water" /></a>
+ <a href="https://www.hackerrank.com/" target="_blank"><img src="img/partners/rank.svg" alt="Hacker Rank" /></a>
+ <a href="https://getpebble.com" target="_blank"><img src="img/partners/pebble.svg" alt="Get Pebble" /></a>
+ <a href="https://fidelity.com" target="_blank"><img src="img/partners/fidelity.png" alt="fidelity" /></a>
+ <a href="https://sendgrid.com" target="_blank"><img src="img/partners/sendgrid.png" alt="Sendgrid" /></a>
+ <a href="https://google.com" target="_blank"><img src="img/partners/google.png" alt="Google" /></a>
+ <a href="https://ti.com" target="_blank"><img src="img/partners/ti.png" alt="Texas Instruments" /></a>
+ <a href="https://gamestop.com" target="_blank"><img src="img/partners/gamestop.png" alt="Gamestop" /></a>
+ <a href="http://www.showtechproductions.com/" target="_blank"><img src="img/partners/showtech.png" alt="Show Tech Productions" /></a>
+ -->
+ </div>
+ </section>
+
+ <section class="quote container">
+ <img class="col-md-8 col-md-offset-2" src="img/Contact.svg">
+ </section>
+
+ <section id="contact" class="container">
+ <div class="row text-center">
+ <h2>Contact</h2>
+ </div>
+ <div class="row">
+ <div class="col-md-8">
+ <h3>Hallo!</h3>
+ <p>We'd love to hear from you! We are a friendly bunch and open to discussing new ideas, improvements or partnerships. </p>
+ <a href="#">[email protected]</a>
+ <h3>Come see us, y'all.</h3>
+ <p>Pay us a visit or send us snail mail.</p>
+ <p>
+ <a href="http://dfwinnovationcenter.com/">DFW Innovation Center </a><br/>
+ 1201 International Pkwy. STE 200A<br/>
+ Richardson, TX 75081</p>
+ </div>
+ <div class="col-md-4">
+ <h3>Follow us.</h3>
+ <p>Stay in the loop and keep track of the cool things we're trying to do. </p>
+ <a href="http://www.facebook.com/HackDFW/">Facebook</a><br/>
+ <a href="http://twitter.com/hackdfw">Twitter</a>
+ </div>
+ </div>
+ </section>
+
+ <footer>
+ <div class="container">
+ <p class="pull-left">
+ &copy; 2015 HackDFW. Made with <span class="fa fa-heart" style="color: #EA4E4E"></span> in Dallas.
+ <a href="http://hackcodeofconduct.org/hackdfw" target="_blank">Code of Conduct</a>
+ </p>
+ <ul id="social" class="pull-right">
+ <li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i></a> </li>
+ <li><a href="https://facebook.com/hackdfw"><i class="fa fa-facebook"></i></a> </li>
+ <li><a href="https://twitter.com/hackdfw"><i class="fa fa-twitter"></i></a> </li>
+ </ul>
+ </div>
+ </footer>
+
+ <script src="js/jquery.min.js"></script>
+ <script src="js/bootstrap.min.js"></script>
+ <script src="js/two.min.js"></script>
+ <script src="js/underscore-min.js"></script>
+ <script src="js/javascript.js"></script>
+ <script>
+ (function(i, s, o, g, r, a, m) {
+ i['GoogleAnalyticsObject'] = r;
+ i[r] = i[r] || function() {
+ (i[r].q = i[r].q || []).push(arguments)
+ }, i[r].l = 1 * new Date();
+ a = s.createElement(o),
+ m = s.getElementsByTagName(o)[0];
+ a.async = 1;
+ a.src = g;
+ m.parentNode.insertBefore(a, m)
+ })(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
+ ga('create', 'UA-56966245-1', 'auto');
+ ga('require', 'displayfeatures');
+ ga('send', 'pageview');
+ </script>
+</body>
</html>
diff --git a/js/javascript.js b/js/javascript.js
index ebef55c..e58bc9a 100644
--- a/js/javascript.js
+++ b/js/javascript.js
@@ -13,12 +13,14 @@ var colors = [
"#FF9CA8",
"#38C555"
]
-var shapes = []; //list of all different shapes
-var particles = []; //list of all unique particles from shapes
+var spacing = 200;
//start this shit
var two = new Two(params).appendTo(elem);
+var shapes = two.makeGroup(); //group of all different shapes
+var particles = two.makeGroup(); //group of all unique particles from shapes
+
//find all shapes
var objects = $('#shapes object');
var count = objects.length;
@@ -26,44 +28,77 @@ objects.each(function(i, el) {
el.onload = function() {
var shape = two.interpret($(el).contents().find('svg')[0]);
shape.visible = false;
- shapes.push(shape);
+ shape.scale = _.random(6,10)*.01; //The original SVGs are just this massive!
+ shape.center();
+ shapes.add(shape);
if (!--count) generateShapes();
}
});
+
//generate random shapes
-function generateShapes() {
- _(20).times(function(n) {
- var shape = _.sample(shapes).clone();
+function generateShapes() {
+ var rows = Math.floor(two.height / spacing);
+ var cols = Math.floor(two.width / spacing);
- shape.fill = _.sample(colors);
- shape.scale = _.random(10,20)*.01; //The original SVGs are just this massive!
- shape.opacity = 0;
- shape.visible = true;
+ for (var i = 0; i < rows; i++) {
+ var even = !!(i % 2);
- var opacity, step, stepX, stepY, initialX, initialY;
- shape.start = function() {
- stepX = _.random(-10,10)/5;
- stepY = _.random(-10,10)/5;
- step = _.random(10,100)/10000;
- initialX = _.random(0,two.width);
- initialY = _.random(0,two.height);
- shape.translation.set(initialX,initialY);
- opacity = -1.0;
- }
- shape.step = function() {
- if (shape.opacity <= 0) shape.start();
- opacity += step;
- shape.translation.x += stepX;
- shape.translation.y += stepY;
- shape.rotation += step;
- shape.opacity = 1 - Math.abs(opacity);
+ for (var j = 0; j < cols - 1; j++) {
+ var k = j;
+
+ if (even) k += 0.5;
+
+ var vi = i / (rows - 1);
+ if (!!(j % 2))
+ vi = (i - 0.5) / (rows - 1);
+
+ var hi = k / (cols - 1);
+ var shape = _.sample(shapes.children).clone();
+
+ shape.fill = _.sample(colors);
+ shape.opacity = 1;
+ shape.visible = true;
+ shape.translation.set(hi * two.width, vi * two.height);
+ shape.name = j;
+
+ shape.step = function() {
+ this.translation.x += _.random(-1,1);
+ this.translation.y += _.random(-1,1);
+ }
+ particles.add(shape);
}
- particles.push(shape);
- });
+ }
}
+
//main animation
two.bind('update',function() {
- _.each(particles,function(child) {
+ _.each(particles.children,function(child) {
child.step();
});
});
+
+//make sure it runs after dom
+$(function() {
+ //get all divs linked to navbar
+ var links = $('section.container').map(function() {
+ var $this = $(this);
+ return $('ul.nav li a').map(function() {
+ if ($this.attr('id') == $(this).attr('href').replace('#',''))
+ return $this;
+ }).toArray();
+ });
+ $(window).scroll(function() {
+ links.each(function() {
+ var $this = $(this);
+ if ($this.offset().top - 300 <= $(window).scrollTop()) {
+ $('ul.nav li').each(function() {
+ if ($(this).find('a').attr('href') == "#".concat($this.attr('id'))) {
+ $('ul.nav li').removeClass('active');
+ $(this).addClass('active');
+ return false;
+ }
+ });
+ }
+ });
+ });
+});
diff --git a/js/npm.js b/js/npm.js
deleted file mode 100644
index bf6aa80..0000000
--- a/js/npm.js
+++ /dev/null
@@ -1,13 +0,0 @@
-// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.
-require('../../js/transition.js')
-require('../../js/alert.js')
-require('../../js/button.js')
-require('../../js/carousel.js')
-require('../../js/collapse.js')
-require('../../js/dropdown.js')
-require('../../js/modal.js')
-require('../../js/tooltip.js')
-require('../../js/popover.js')
-require('../../js/scrollspy.js')
-require('../../js/tab.js')
-require('../../js/affix.js')
\ No newline at end of file
diff --git a/sponsorship.pdf b/sponsorship.pdf
new file mode 100644
index 0000000..8b9f98b
Binary files /dev/null and b/sponsorship.pdf differ
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment