Skip to content

Commit

Permalink
Updated styling and format of header
Browse files Browse the repository at this point in the history
  • Loading branch information
youngderrick82 committed Mar 10, 2024
1 parent 035870b commit 949a5bc
Show file tree
Hide file tree
Showing 3 changed files with 55 additions and 25 deletions.
Binary file modified assets/dots.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 9 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<link rel="stylesheet" href="/styles.css" />
</head>
<nav class="navbar">
<div class="logo flex flex-grow">
<div class="logo flex">
<img class="logo-bolt" src="/assets/tiny-bolt.png" alt="logo-bolt" />
<p>Thunderplains2024</p>
</div>
<div class="link-container flex-grow">
<div class="link-container">
<ul class="links">
<li class="link">SPONSOR</li>
<li class="link"><a>SPONSOR</a></li>
<li class="link">|</li>
<li class="link">SPEAK</li>
<li class="link">|</li>
Expand All @@ -33,19 +33,18 @@
<img src="/assets/Logomark_Bolt.png" alt="" class="header-img" />
</div>
<div class="text-wrapper">
<h1>
<span class="info"
>Oct. 10, 2024 <span class="subhead">|</span> OKC, </span
>ThunderPlains<span class="subhead"> Developer Conference</span>
</h1>
<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 dont want to
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.
Whethere you're a seasoned developer or just staring out,
whether you're a seasoned developer or just staring out,
ThunderPlains has something for everyone.<strong
>Join us in 2024!</strong
>
Expand Down
61 changes: 46 additions & 15 deletions styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,35 +10,42 @@
body {
margin: 0;
padding: 0;
color: white;
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;
margin: 0;
padding: 0;
}

.link {
list-style: none;
margin: 5px;
}

.socials {
}

header {
margin-top: 0;
padding-top: 3em;
Expand All @@ -51,6 +58,10 @@ header {
height: 40rem;
}

.subhead-divider {
color: var(--magenta);
}

section {
margin: auto;
max-width: 1240px;
Expand All @@ -61,19 +72,22 @@ section {
text-align: center;
width: 100%;
height: auto;
z-index: 2;
}

/* .img-wrapper::after {
position: absolute;
background: url(/assets/dots.png);
background-size: .7rem;
content: " ";
width: 100%;
height: 100%;
top: 0;
bottom: 0;
left: 0;
} */
.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;
Expand All @@ -83,6 +97,21 @@ section {
.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 {
Expand All @@ -102,11 +131,13 @@ section {
.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;
Expand Down Expand Up @@ -144,8 +175,8 @@ section {

#volunteer {
position: relative;
left: 0.6rem;
top: 0.3rem;
left: 0.9rem;
top: 1.2rem;
height: 2.3em;
rotate: -8deg;
}

0 comments on commit 949a5bc

Please sign in to comment.