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
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,6 @@ Stretch goals are not required. Complete the project objectives before working o

- [ ] Change all the image tags into background images instead

- [ ] Research CSS animations and see how you could implement some ideas when hovering over buttons or navigation items
- [ ] Research CSS animations and see how you could implement some ideas when hovering over buttons or navigation items

Nathan-Buckingham
20 changes: 19 additions & 1 deletion great-idea-website/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ table {

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

h1, h2, h3, h4, h5 {
Expand All @@ -72,6 +72,10 @@ a {
color: gray;
}

a:hover{
color: black;
}

.container{
width:100%;
height:100vh;
Expand All @@ -87,6 +91,7 @@ a {
line-height: 100px;
background-color:white;
border-bottom: solid 2px;
overflow: hidden;
}

.header a{
Expand Down Expand Up @@ -142,6 +147,14 @@ a {
display:inline-block;
width:50%;
text-align:center;
height:380px;
}

.img{
background-image: url("../img/header-img.png");
background-size:auto;
background-repeat:no-repeat;
background-position:center;
}

.info{
Expand All @@ -160,6 +173,11 @@ a {
width:100%;
padding:25px;
}

.info div{
padding-right:5px;
}

.features{
width:50%;
}
Expand Down
5 changes: 3 additions & 2 deletions great-idea-website/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<title>Great Idea!</title>

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

<!--[if lt IE 9]>
Expand All @@ -22,7 +23,7 @@
<a href="#">Features</a>
<a href="#">About</a>
<a href="#">Contact</a>
<img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
<a href="#"></a><img class="logo" src="img/logo.png" alt="Great Idea! Company logo.">
</div>
</header>
<div class="main">
Expand All @@ -35,7 +36,7 @@ <h1>
<a href="#"><span>Get Started</span></a>
</div>
<div class="img">
<img src="img/header-img.png" alt="Image of a code snippet.">
<!--<img src="img/header-img.png" alt="Image of a code snippet."> -->
</div>
</div>
<div class="info">
Expand Down