added hanging card, and made title name "pop-out"
This commit is contained in:
+19
-6
@@ -24,14 +24,16 @@
|
|||||||
|
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
<i class="mdi mdi-desktop-classic mdi-48px px-4"></i>
|
<div class="site-title">
|
||||||
<h1>TOMODACHI</h1>
|
<i class="mdi mdi-desktop-classic mdi-48px px-4"></i>
|
||||||
|
<h1>TOMODACHI</h1>
|
||||||
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<main>
|
<main>
|
||||||
<section id="hero-img" class="container-fluid p-5">
|
<section id="hero-img" class="container-fluid p-5">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-3" id="signup-box">
|
<div class="col-md-3" id="signup-box">
|
||||||
<h4>Keep updated</h4>
|
<h4 class="txt-lt">Keep updated</h4>
|
||||||
<div class="card">
|
<div class="card">
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<h5 class="card-subtitle">Tell us about you</h5>
|
<h5 class="card-subtitle">Tell us about you</h5>
|
||||||
@@ -91,18 +93,29 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="col-6 offset-1" id="ovly-text">
|
<div class="col-6 offset-1 txt-lt">
|
||||||
<h4>The Retro Renaissance is Here!</h4>
|
<h4>The Retro Renaissance is Here!</h4>
|
||||||
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas exercitationem impedit nobis delectus aliquam.</p>
|
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Voluptas exercitationem impedit nobis delectus aliquam.</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
<section id="pitch-bar" class="container-fluid">
|
<section id="pitch-bar" class="container-fluid txt-lt bg-drk">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-5">
|
<div class="col-md-5 txt-lt">
|
||||||
<h3>Powerful 16-bit Computing, in an Affordable Package!</h3>
|
<h3>Powerful 16-bit Computing, in an Affordable Package!</h3>
|
||||||
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Fuga velit nesciunt id error nobis iste sequi hic voluptates ut cupiditate.</p>
|
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Fuga velit nesciunt id error nobis iste sequi hic voluptates ut cupiditate.</p>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="col-7">
|
||||||
|
<div class="card hanging-card">
|
||||||
|
<ul class="list-group">
|
||||||
|
<li class="list-group-item">lorem3</li>
|
||||||
|
<li class="list-group-item">lorem3</li>
|
||||||
|
<li class="list-group-item">lorem3</li>
|
||||||
|
<li class="list-group-item">lorem3</li>
|
||||||
|
<li class="list-group-item">lorem3</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|||||||
@@ -9,16 +9,22 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
header {
|
header {
|
||||||
|
background-color: var(--dark-bg);
|
||||||
|
height: 10vh;
|
||||||
|
width: 100vw;
|
||||||
|
}
|
||||||
|
|
||||||
|
.site-title {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
font-family: "DEADCRT";
|
font-family: "DEADCRT";
|
||||||
background-color: var(--dark-bg);
|
/* background-color: var(--dark-bg); */
|
||||||
color: white;
|
color: white;
|
||||||
padding-left: 2em;
|
padding-left: 2em;
|
||||||
padding-right: 2em;
|
padding-right: 2em;
|
||||||
padding-top: 1em;
|
padding-top: 1em;
|
||||||
height: 10vh;
|
/* height: 10vh; */
|
||||||
width: 100vw;
|
/* width: 100vw; */
|
||||||
padding-bottom: 1em;
|
padding-bottom: 1em;
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
@@ -26,7 +32,7 @@ header {
|
|||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
margin-top: 10vh;
|
/* margin-top: 10vh; */
|
||||||
height: 500vh;
|
height: 500vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -41,7 +47,21 @@ main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#pitch-bar {
|
#pitch-bar {
|
||||||
min-height: 30vh;
|
height: 30vh;
|
||||||
background-color: var(--dark-bg);
|
background-color: var(--dark-bg);
|
||||||
color: var(--light-text);
|
color: var(--light-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.txt-lt {
|
||||||
|
color: var(--light-text);
|
||||||
|
}
|
||||||
|
|
||||||
|
.bg-drk {
|
||||||
|
background-color: var(--dark-bg);
|
||||||
|
}
|
||||||
|
|
||||||
|
.hanging-card {
|
||||||
|
min-height: 36vh;
|
||||||
|
position: relative;
|
||||||
|
top: 10vh;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user