landing page: create initial layout
This commit is contained in:
commit
c3195fcc87
16
index.html
Normal file
16
index.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>Finally, coffee!</title>
|
||||||
|
<link rel="stylesheet" type="text/css" href="main.css" />
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<div class="sticker">
|
||||||
|
<div class="red"></div>
|
||||||
|
<div class="text bigger">FGHT<br />NZS!</div>
|
||||||
|
<div class="text">DRNK C0FFƎE</div>
|
||||||
|
<div class="red"></div>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
31
main.css
Normal file
31
main.css
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
body {
|
||||||
|
background-color: #333;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticker {
|
||||||
|
background-color: black;
|
||||||
|
height: 40vh;
|
||||||
|
width: 50vh;
|
||||||
|
position: relative;
|
||||||
|
margin: 5vh auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticker .red {
|
||||||
|
height: 10%;
|
||||||
|
width: 100%;
|
||||||
|
margin: 0 0;
|
||||||
|
background-color: red;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticker .text {
|
||||||
|
color: white;
|
||||||
|
font-family: "Courier new", monospace, sans-serif;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 4em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sticker .text.bigger {
|
||||||
|
font-size: 7em;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user