-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from youngderrick82/main
Added nav and header menu
- Loading branch information
Showing
16 changed files
with
293 additions
and
0 deletions.
There are no files selected for viewing
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,18 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/.apivcs": true, | ||
"**/.gitignore": true, | ||
"**/.designer.json": true, | ||
"**/.exchange.xml": true, | ||
"**/.vscode": true, | ||
"**/.mvn": true, | ||
"**/.exchange_modules_tmp": true, | ||
".mule": true | ||
} | ||
} |
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,93 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>ThunderPlains</title> | ||
<link rel="stylesheet" href="/styles.css" /> | ||
</head> | ||
<nav class="navbar"> | ||
<div class="logo flex"> | ||
<img class="logo-bolt" src="/assets/tiny-bolt.png" alt="logo-bolt" /> | ||
<p>Thunderplains2024</p> | ||
</div> | ||
<div class="link-container"> | ||
<ul class="links"> | ||
<li class="link"><a>SPONSOR</a></li> | ||
<li class="link">|</li> | ||
<li class="link">SPEAK</li> | ||
<li class="link">|</li> | ||
<li class="link">VOLUNTEER</li> | ||
</ul> | ||
</div> | ||
<div class="socials"> | ||
<img class="social-link" src="/assets/x-twitter.svg" alt="X-Twitter" /> | ||
<img class="social-link" src="/assets/facebook.svg" alt="FaceBook" /> | ||
<img class="social-link" src="/assets/linked-in.svg" alt="LinkedIn" /> | ||
</div> | ||
</nav> | ||
<body> | ||
<header class="tplains-header"> | ||
<section class="flex flex-container"> | ||
<div class="img-wrapper"> | ||
<img src="/assets/Logomark_Bolt.png" alt="" class="header-img" /> | ||
</div> | ||
<div class="text-wrapper"> | ||
<span class="info">10.10.24 <span class="subhead-divider"> | </span>OKC, OK</span | ||
> | ||
<h1 class="header-text">ThunderPlains</h1> | ||
<h2 class="sub-header"> Developer Conference</h2> | ||
<h1 class="comment"> | ||
ThunderPlains is an electrifying tech event that you don't want to | ||
miss! | ||
</h1> | ||
<p class="intro"> | ||
Explore the latest trends, gain value insights, and connect whit | ||
like-minded individuals who share your passion for technology. | ||
whether you're a seasoned developer or just staring out, | ||
ThunderPlains has something for everyone.<strong | ||
>Join us in 2024!</strong | ||
> | ||
</p> | ||
</div> | ||
</section> | ||
<div> | ||
<div class="btn-container"> | ||
<div class="btn"> | ||
<div class="header-btn"> | ||
<a>Sponsor</a> | ||
</div> | ||
<div class="img-box"> | ||
<img | ||
id="sponsor" | ||
class="btn-img" | ||
src="/assets/handshake.svg" | ||
alt="handshake" | ||
/> | ||
</div> | ||
</div> | ||
<div class="btn"> | ||
<div class="header-btn"> | ||
<a>Speak</a> | ||
</div> | ||
<div class="img-box"></div> | ||
<img | ||
id="speak" | ||
class="btn-img" | ||
src="/assets/microphone.svg" | ||
alt="microphone" | ||
/> | ||
</div> | ||
<div class="btn"> | ||
<div class="header-btn"> | ||
<a>Volunteer</a> | ||
</div> | ||
<div class="img-box"> | ||
<img id="volunteer" class="btn-img" src="/assets/people.svg" alt="Volunteer" /> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
</body> | ||
</html> |
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,182 @@ | ||
:root { | ||
--navy: #05125f; | ||
--magenta: #931cad; | ||
--darkMagenta: #5e1279; | ||
--darkGrey: #242736; | ||
--white: #fff; | ||
--header-gradient: linear-gradient(320deg, #5e1279 2.37%, #05125f 67.37%); | ||
} | ||
|
||
body { | ||
margin: 0; | ||
padding: 0; | ||
color: var(--white); | ||
} | ||
|
||
nav { | ||
display: flex; | ||
height: 2rem; | ||
background: var(--darkGrey); | ||
align-items: center; | ||
justify-content: space-between; | ||
padding: 0px 5em; | ||
} | ||
|
||
.logo { | ||
margin: 0; | ||
margin-right: -2.9em; | ||
font-size: 1.25rem; | ||
} | ||
|
||
.logo-bolt { | ||
height: 1.5rem; | ||
padding-top: 1em; | ||
} | ||
|
||
.links { | ||
display: flex; | ||
padding: 0; | ||
} | ||
|
||
.link { | ||
list-style: none; | ||
margin: 5px; | ||
} | ||
|
||
.socials { | ||
} | ||
|
||
header { | ||
margin-top: 0; | ||
padding-top: 3em; | ||
} | ||
|
||
.tplains-header { | ||
position: relative; | ||
background: var(--header-gradient); | ||
width: 100vw; | ||
height: 40rem; | ||
} | ||
|
||
.subhead-divider { | ||
color: var(--magenta); | ||
} | ||
|
||
section { | ||
margin: auto; | ||
max-width: 1240px; | ||
} | ||
|
||
.img-wrapper { | ||
position: relative; | ||
text-align: center; | ||
width: 100%; | ||
height: auto; | ||
z-index: 2; | ||
} | ||
|
||
.img-wrapper::after { | ||
position: absolute; | ||
background: url(/assets/dots.png); | ||
background-repeat: repeat; | ||
background-size: 1rem; | ||
content: " "; | ||
width: 80vw; | ||
height: 77.5vh; | ||
top: -50px; | ||
left: 58%; | ||
opacity: 2%; | ||
z-index: -1; | ||
} | ||
|
||
.header-img { | ||
height: 30em; | ||
text-align: center; | ||
} | ||
|
||
.text-wrapper { | ||
height: 500px; | ||
width: 100%; | ||
z-index: 10; | ||
} | ||
|
||
.header-text { | ||
font-size: 3rem; | ||
margin-bottom: 0px; | ||
font-family: "Murecho", sans-serif; | ||
} | ||
|
||
.sub-header { | ||
font-family: "Lato", sans-serif; | ||
font-size: 2em; | ||
font-weight: 500; | ||
margin-top: 0; | ||
color: var(--magenta); | ||
} | ||
|
||
.flex-grow { | ||
flex-grow: 1; | ||
} | ||
|
||
.flex { | ||
display: flex; | ||
} | ||
|
||
.btn-container { | ||
display: flex; | ||
height: 3rem; | ||
margin-top: 3em; | ||
} | ||
|
||
.btn { | ||
display: flex; | ||
margin: auto; | ||
z-index: 2; | ||
} | ||
|
||
.header-btn { | ||
background: var(--magenta); | ||
height: 2rem; | ||
min-width: 8em; | ||
width: 12.5vw; | ||
font-size: 24px; | ||
border-radius: 4px; | ||
} | ||
|
||
.img-box { | ||
position: relative; | ||
background: var(--darkGrey); | ||
right: 6rem; | ||
bottom: 1.2rem; | ||
height: 75px; | ||
width: 75px; | ||
rotate: 8deg; | ||
border: 2px solid white; | ||
border-radius: 5px; | ||
} | ||
|
||
.btn-img { | ||
} | ||
|
||
#sponsor { | ||
position: relative; | ||
left: 0.8rem; | ||
top: 1.1rem; | ||
height: 2.3em; | ||
rotate: -8deg; | ||
} | ||
|
||
#speak { | ||
position: relative; | ||
left: -9.5rem; | ||
top: -0.2rem; | ||
height: 2.8em; | ||
} | ||
|
||
#volunteer { | ||
position: relative; | ||
left: 0.9rem; | ||
top: 1.2rem; | ||
height: 2.3em; | ||
rotate: -8deg; | ||
} |