-
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
0 parents
commit 4e066a5
Showing
3 changed files
with
77 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,30 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Startup</title> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<!-- Google Fonts --> | ||
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet"> | ||
|
||
<!-- Bootstrap CSS from a CDN. This way you don't have to include the bootstrap file yourself --> | ||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> | ||
|
||
<!-- Your own stylesheet --> | ||
<link rel="stylesheet" type="text/css" href="style.css"> | ||
</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> | ||
<button class="btn btn-primary btn-xl">Find out more</button> | ||
</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,47 @@ | ||
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 { | ||
border-color: #F05F44; | ||
border-width: 3px; | ||
max-width: 65px; | ||
} | ||
|
||
.buffer { | ||
height: 11.4rem; | ||
} | ||
|
||
.btn { | ||
font-weight: 700; | ||
border-radius: 500px; | ||
text-transform: uppercase; | ||
} | ||
|
||
.btn-primary { | ||
background-color: #F05F44; | ||
border-color: #F05F44; | ||
} | ||
|
||
.btn-primary:hover { | ||
background-color: #ee4b08; | ||
border-color: #ee4b08; | ||
border-width: 4px; | ||
} | ||
|
||
.btn-xl { | ||
padding: 1rem 2rem; | ||
} |