Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
110 changes: 56 additions & 54 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,61 +3,63 @@
<head>
<meta charset="utf-8">
<title>Startrly</title>
<link rel="stylesheet" type="text/css" href="normalize.css">
<link rel="stylesheet" type="text/css" media="screen" href="main.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat|PT+Mono|Heebo:500" rel="stylesheet">
</head>
<body>
<div>


<nav>
<div class="container">
<nav class="nav">
<ul>
<li>
<li class="startrly">
Startrly
</li>
<li>
<li class="try">
Try Now!
</li>
<li>
<li class="about">
About
</li>
</ul>
</nav>


<section>
<h1>Startrly</h1>
<section class="tagline">
<h1 id="startrly">Startrly</h1>
<sub>A catchy tagline for a great solution</sub>
<a href="#">Some Call to Action</a>
<div>
<button><a href="#">Some Call to Action</a></button>
</div>
</section>


<section>
<section class="quote1">
<blockquote>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.
</blockquote>
<p>
<p class="author">
Mx. Lorem
</p>
</section>


<section>
<h2>Why?</h2>
<ul>
<li>
<section class="why">
<div>
<h2 id="top">Why?</h2>
</div>
<ul class="pic-text">
<li class="w1">
<img src="http://via.placeholder.com/100x100" />
<strong>Comfortable</strong>
<p>
Et quas molestias excepturi sint occaecati cupiditate non providents, ut aut reiciendis voluptatibus maiores.
</p>
</li>
<li>
<li class="w2">
<img src="http://via.placeholder.com/100x100" />
<strong>Robust</strong>
<p>
At vero eos et accusamus et iusto odio dignissimos ducimus qui. Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam.
</p>
</li>
<li>
<li class="w3">
<img src="http://via.placeholder.com/100x100" />
<strong>Convenient</strong>
<p>
Expand All @@ -67,50 +69,50 @@ <h2>Why?</h2>
</ul>
</section>


<section>
<section class="quote2">
<blockquote>
Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt.
</blockquote>
<p>
<p class="author">
Mx. Ipsum
</p>
</section>


<section>
<section class="team">
<h2>Meet the team</h2>
<ul>
<li>
<img src="https://placebear.com/150/150" alt="profile for kari kiwi" />
<span>Kari Kiwi</span>
<span>CFO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for dan dragon" />
<span>Dan Dragon</span>
<span>CMO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for chris caribou" />
<span>Chris Caribou</span>
<span>CIO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for charles cheetah" />
<span>Charles Cheetah</span>
<span>Board Member, CTO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for dee dugong" />
<span>Dee Dugong</span>
<span>Startup Enthusiast</span>
</li>

<ul class="first-3">
<li>
<img src="https://placebear.com/150/150" alt="profile for kari kiwi" />
<span>Kari Kiwi</span>
<span>CFO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for dan dragon" />
<span>Dan Dragon</span>
<span>CMO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for chris caribou" />
<span>Chris Caribou</span>
<span>CIO</span>
</li>

<li>
<img src="https://placebear.com/150/150" alt="profile for charles cheetah" />
<span>Charles Cheetah</span>
<span>Board Member, CTO</span>
</li>
<li>
<img src="https://placebear.com/150/150" alt="profile for dee dugong" />
<span>Dee Dugong</span>
<span>Startup Enthusiast</span>
</li>
</ul>
</section>


<section>
<section class="sponsors">
<h2>Sponsors</h2>
<ul>
<li>
Expand All @@ -132,7 +134,7 @@ <h2>Sponsors</h2>
</section>


<section>
<section class="footer">
<div>
<h3>Support</h3>
<ul>
Expand Down
207 changes: 207 additions & 0 deletions main.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,207 @@
body {
font-family: 'Montserrat', sans-serif;
}

.container{
display: grid;
grid-template: auto 2.5fr 2fr 2fr 2fr 1.75fr 1.75fr 2fr auto / 2fr 1fr 1fr;
grid-template-areas:
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll definitely try using grid-template-areas next time

"n n n"
"t t t"
"q1 q1 q1"
"w w w"
"q2 q2 q2"
"team team team"
"team team team"
"s s s"
"f f f";
}

.nav {
grid-area: n;
margin: 20px;
flex-wrap: wrap;
}
.nav ul {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
list-style-type: none;
}

.try {
text-align: right;
color: #B39662;
padding-left: 380px;
}

.about {
padding-right: 80px;

}

.tagline {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your nav and tagline classes are designed so well and look great in the browser!

grid-area: t;
text-align: center;
font-weight: bold;
background-color: #BFFFDD;
border-bottom: solid;
border-width: 1px;
}

#startrly {
font-family: 'Heebo', sans-serif;
font-size: 4rem;
font-weight: bold;
letter-spacing: 1.4px;
}
sub {
font-size: 1.5rem;
padding-bottom: 30px;
margin-top: 2px;
}

button {
border: 2px solid black;
border-radius: 10px;
text-align: center;
padding: 10px;
margin: 50px;
font-size: 2em;
}

button:hover {
background-color:#FFE0A5;
}
a {
text-decoration: none;
color: #000;
padding: 15px;

}
.quote1 {
grid-area: q1;
display: flex;
border-bottom: solid;
border-width: 1px;
margin-top: 5em;
}

blockquote {
margin: 1.5em 10px;
padding: 0.5em 10px;
quotes: "\201C""\201D""\2018""\2019";
font-style: italic;
}

blockquote:before {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had no idea you could add quotes in css

color: #000;
content: open-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 0.25em;
vertical-align: -0.4em;
}
blockquote:after {
color: #000;
content: close-quote;
font-size: 4em;
line-height: 0.1em;
margin-right: 1em;
vertical-align: -0.5em;
}

.author {
text-align: right;
margin-right: 30px;
padding-right: 40px;
font-style: italic;
}

.why {
grid-area: w;
list-style: none;
border-bottom: solid;
border-width: 1px;
}
.why h2 {
text-align: center;
}
.why ul {
display: grid;
grid-template-columns: repeat(3, 1fr);
list-style-type: none;
}

.why img {
float: left;
margin: 0 1em 1em 0;
}

.quote2 {
grid-area: q2;
border-bottom: solid;
border-width: 1px;
margin-top: 5em;
}

.team {
grid-area: team;
border-bottom: solid;
border-width: 1px;
}

.team h2 {
text-align: center;
padding-bottom: 2em;
}

.team ul li{
margin-bottom: 3em;
}

.team img {
border-radius: 50%;
float: top;
}

.first-3 {
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;

}

.team span {
bottom: 0em;
line-height: normal;
}

.sponsors {
grid-area: s;
border-bottom: solid;
border-width: 1px;
}

.sponsors ul {
list-style-type: none;
display: flex;
flex-direction: row;
justify-content: space-evenly;
flex-wrap: wrap;
}

.sponsors h2 {
text-align: center;
}

.footer {
grid-area: f;
display: flex;
}

.footer ul li {
list-style-type: none;
}
Loading