Skip to content

Test #1580

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Test #1580

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
126 changes: 120 additions & 6 deletions great-idea-website/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
/*html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
Expand All @@ -23,7 +23,7 @@ time, mark, audio, video {
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
HTML5 display-role reset for older browsers
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
Expand All @@ -46,15 +46,16 @@ table {
border-collapse: collapse;
border-spacing: 0;
}

*/
/* Set every element's box-sizing to border-box */
/* No Flexbox or CSS Grid */
* {
box-sizing: border-box;
box-sizing: border-box;
}

html, body {
height: 100%;
font-family: 'Titillium Web', sans-serif;
font-family: 'Titillium Web', sans-serif;
}

h1, h2, h3, h4, h5 {
Expand All @@ -63,4 +64,117 @@ h1, h2, h3, h4, h5 {
margin-bottom: 15px;
}

/* Your code starts here! */
/* Your code starts here! */

/* Navbar*/
#navbar{
width: 100vw;
height: 60px;
z-index: 10;
background: linear-gradient(to right, blue, red);
position: fixed;
top: 0;
left: 0;
}
#navbar a{
width: 100px;
height: 100%;
text-decoration: none;
color: white;
display: inline-block;
vertical-align: top;
text-align: center;
padding-top: 15px;
}

/* Innovation On Demand */
#innovation_container{
height: 450px;
margin-top: 85px;
}

#innovation_and_button{
width: 45%;
height: 100%;
vertical-align: top;
display: inline-block;
padding: 55px 95px 105px 75px;
}
#innovation_on_demand{
font-size: 4.1rem;
text-align: center;
}
#get_started_button{
margin-left: 4%;
width: 95%;
height: 35px;
background: #37af65;
color: white;
font-size: 20px;
border: none;
border-radius: 10px;
cursor: pointer;
font-family: 'Anton', sans-serif;
}
#image_container{
width: 50%;
height: 100%;
padding: 10px 0px 0px 60px;
display: inline-block;
background-image: url("header-img.png");
}
/* Features and About Section */
#features_about{
border-top: gray 2px solid;
}
#features, #about{
display: inline-block;
width: 49.5%;
}

/* Images */
.middle-img{
width: 100vw;
max-width: 100%;
height: 20vw;
}
.logo{
padding: 8px 0px 0px 105px;
}
/* Services, Product, and Vision Section */
#services_product_vision{
border-bottom: gray 2px solid;
}
#services, #product, #vision{
display: inline-block;
width: 33%;
}
/* Footer Section */
#copyright{
text-align: center;
margin-bottom: 100px;
}
/* Hover Effects */
#navbar a:hover{
animation-name: test;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-direction: reverse;
}
@keyframes test{
0% {
background-color: orange;
}
20%{
background-color: lightblue;
}
40%{
background-color: orange;
}
60%{
background-color: lightblue;
}
100%{
background-color: orange;
}
}
79 changes: 79 additions & 0 deletions great-idea-website/css/link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
*{
box-sizing: border-box;
padding: 0;
margin: 0;
font-family: sans-serif;
}

/* Navbar */
#navbar{
width: 100%;
height: 60px;
z-index: 10;
background: linear-gradient(to right, blue, red);
position: fixed;
top: 0;
left: 0;
}
#navbar a{
width: 100px;
height: 100%;
text-decoration: none;
color:white;
display: inline-table;
vertical-align: top;
text-align: center;
padding-top: 20px;
}
/* First Section */
#first_section{
margin-top: 60px;

}
#first_section h1{
text-align: center;
font-family: 'Titillium Web', sans-serif;
border-bottom: gray 2px solid;
padding: 20px 0px 20px 0px;
}
#services_section{
padding-top: 20px;
}
#quality, #state_of_the_art{
display: inline-block;
width: 48%;
text-align: center;
}
/* Attention To Detail Portion*/
#attention_to_detail{
padding: 30px 0px 0px 0px;
text-align: center;
}
/* Images */
.logo{
padding: 8px 0px 0px 105px;
}
/* Hover Effects */
#navbar a:hover{
animation-name: test;
animation-duration: 5s;
animation-iteration-count: infinite;
animation-direction: reverse;
}
@keyframes test{
0% {
background-color: orange;
}
20%{
background-color: lightblue;
}
40%{
background-color: orange;
}
60%{
background-color: lightblue;
}
100%{
background-color: orange;
}
}
97 changes: 59 additions & 38 deletions great-idea-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,56 +8,77 @@

<link href="https://fonts.googleapis.com/css?family=Bangers|Titillium+Web" rel="stylesheet">
<link rel="stylesheet" href="css/index.css">

<link href="https://fonts.googleapis.com/css?family=Anton&display=swap" rel="stylesheet">
<link href="C:\Users\OnTheComeUp\Desktop\LambdaSchool\Week 1 User Interface and Git Flow\User-Interface-II-Project\User-Interface\great-idea-website\link.html">
<!--[if lt IE 9]>
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
</head>

<body>

Services
Product
Vision
Features
About
Contact

<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
Innovation
On
Demand

Get Started

<img src="img/header-img.png" alt="Image of a code snippet.">

Features
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.


About
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">

Services
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.


Product
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

Vision
Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo, at imperdiet metus scelerisque quis.

Contact
<nav id="navbar">
<a href="C:\Users\OnTheComeUp\Desktop\LambdaSchool\Week 1 User Interface and Git Flow\User-Interface-II-Project\User-Interface\great-idea-website\link.html" target="_blank">Services</a>
<a href="#product">Product</a>
<a href="#vision">Vision</a>
<a href="#features">Features</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
</nav>
<div id="innovation_container">
<div id="innovation_and_button">
<h1 id="innovation_on_demand">Innovation On Demand</h1>
<button type="button" id="get_started_button">Get Started</button>
</div>
<div id="image_container">
</div>
</div>
<div id="features_about">
<div id="features">
<h2>Features</h2>
<p>Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo,
at imperdiet metus scelerisque quis.</p>
</div>
<div id="about">
<h2>About</h2>
<p>Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo,
at imperdiet metus scelerisque quis.</p>
</div>
</div>
<img class="middle-img" src="img/mid-page-accent.jpg" alt="Image of code snippets across the screen">
<div id="services_product_vision">
<div id="services">
<h2>Services</h2>
<p>Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo,
at imperdiet metus scelerisque quis.</p>
</div>
<div id="product">
<h2>Product</h2>
<p>Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo,
at imperdiet metus scelerisque quis.</p>
</div>
<div id="vision">
<h2>Vision</h2>
<p>Aliquam elementum magna eros, ac posuere elvit tempus et. Suspendisse vel tempus odio, in interdutm nisi. Suspendisse eu ornare nisl. Nullam convallis augue justo,
at imperdiet metus scelerisque quis.</p>
</div>
</div>
<footer id="contact">
<h2>Contact</h2>
123 Way 456 Street
<br>
Somewhere, USA
<br>
<br>
1 (888) 888-8888
<br>
<br>
[email protected]
</footer>


Copyright Great Idea! 2018
<p id="copyright">&copy; Great Idea! 2018</p>

</body>
</html>
Loading