-
Notifications
You must be signed in to change notification settings - Fork 0
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
3 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,37 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Startup</title> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<!-- Google Fonts --> | ||
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet"> | ||
|
||
<!-- Note that the below Bootstrap file is a specific version. If you grab the most | ||
current from Bootstrap website, you will see the button grow transition being a lot faster | ||
than in my video. Use whichever style sheet you like best! --> | ||
<!-- Bootstrap CSS from a CDN. This way you don't have to include the bootstrap file yourself --> | ||
<!-- CSS only --> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-4bw+/aepP/YC94hEpVNVgiZdgIC5+VKNBQNGCHeKRQN+PtmoHDEXuppvnDJzQIu9" crossorigin="anonymous"> | ||
|
||
<!-- My own stylesheet --> | ||
<link href="style.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<div class="container d-flex align-items-center h-100"> | ||
<div class="row"> | ||
<header class="text-center col-12"> | ||
<h1 class="text-uppercase"><strong>The biggest startup event of the year</strong></h1> | ||
</header> | ||
<div class="buffer col-12"></div> | ||
<section class="text-center col-12"> | ||
<hr> | ||
<a href="https://mailchi.mp/6abbf1fa1707/123213"> | ||
<button class="btn btn-primary btn-xl">Find out more</button> | ||
</a> | ||
</section> | ||
</div> | ||
</div> | ||
</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,56 @@ | ||
body, | ||
html { | ||
width: 100%; | ||
height: 100%; | ||
font-family: 'Montserrat', sans-serif; | ||
|
||
background: url(header.jpg) no-repeat center center fixed; | ||
-webkit-background-size: cover; | ||
-moz-background-size: cover; | ||
-o-background-size: cover; | ||
background-size: cover; | ||
|
||
} | ||
h1 { | ||
font-size: 3rem; | ||
color: #e2dbdb; | ||
|
||
} | ||
hr { | ||
margin: 20px auto; | ||
color: #F05F44; | ||
border: 3px solid #F05F44; | ||
max-width: 65px; | ||
opacity: 1; | ||
} | ||
|
||
.btn { | ||
font-weight: 700; | ||
border-radius: 300px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.btn-primary { | ||
background-color: #f05f44; | ||
border-color: #f05f44; | ||
} | ||
|
||
.btn-primary:hover { | ||
background-color: #ee4b08; | ||
border-color: #ee4b08; | ||
border-width: 4px; | ||
} | ||
|
||
.buffer { | ||
height: 10rem; | ||
} | ||
.btn-xl { | ||
padding: 1rem 2rem; | ||
} | ||
|
||
.btn-primary { | ||
background-color: #F05F44; | ||
border-color: #F05F44; | ||
--bs-btn-hover-bg: #ee4b08; | ||
--bs-btn-hover-border-color: #ee4b08; | ||
} |