Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
931dcd1
finished tutorial and got halfway through the review; a lot of this i…
JeremySnider01 Nov 6, 2018
c3b5079
adding the index from the original
JeremySnider01 Nov 6, 2018
9e9c368
finished the review with an issue on the print styles; need to turn o…
JeremySnider01 Nov 7, 2018
92a4c45
did a lot of case 1 (brett is piloting); had issues with getting the …
JeremySnider01 Nov 7, 2018
07d7a69
m
JeremySnider01 Nov 7, 2018
609dff7
new commit
JeremySnider01 Nov 7, 2018
de7e2aa
fixed the white space after brett piloted for case 1; technically the…
JeremySnider01 Nov 7, 2018
5b26b4d
A commit- #1
JeremySnider01 Nov 8, 2018
8398a87
commit #2 case 2 finished. heck
JeremySnider01 Nov 8, 2018
2884c2d
fixed some dates that were messed up
JeremySnider01 Nov 8, 2018
7c3636f
beginning of case 3
JeremySnider01 Nov 8, 2018
b07b7c5
made it past most of the case; currently on step 11 explore tying to …
JeremySnider01 Nov 8, 2018
af4f375
almost finished with case 3 just hung up on some white space
JeremySnider01 Nov 12, 2018
9b7cd44
finished case 3 with help from Mr. Schmidt
JeremySnider01 Nov 12, 2018
8020a6c
got the html set up
JeremySnider01 Nov 12, 2018
4d3264f
fixing some white space and adding a new .css for original layout of …
JeremySnider01 Nov 13, 2018
13e6037
began adding the layout of the website and creating a reset style sheet
JeremySnider01 Nov 13, 2018
6bfe91e
began to create a grid for the html page and will start on the grids …
JeremySnider01 Nov 13, 2018
8013521
got the grid set up
JeremySnider01 Nov 14, 2018
3c2154c
deleted the miss made file, finished designing the basic layout
JeremySnider01 Nov 14, 2018
3999e26
almost finished just trying to get order to work
JeremySnider01 Nov 14, 2018
e4d08f6
finished case 4
JeremySnider01 Nov 14, 2018
86628c4
minor comment changes
JeremySnider01 Nov 14, 2018
d889a4c
finished index
JeremySnider01 Nov 30, 2018
4453c9c
changing index image to a reuseable image
JeremySnider01 Dec 3, 2018
d78de04
added a back function to the index
JeremySnider01 Dec 4, 2018
0d91a44
fixing back link
JeremySnider01 Dec 12, 2018
f6b6b8e
making the webpage mobile capable
JeremySnider01 Dec 12, 2018
e92fee3
fixing link
JeremySnider01 Dec 17, 2018
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
Binary file added background1.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 8 additions & 4 deletions case1/gp_cover_txt.html → case1/gp_cover.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@
Case Problem 1

Ghost of the Deep Cover Page
Author:
Date:

Author: Brett and Jeremy
Date: 11/7/18
Filename: gp_cover.html
-->

<title>Ghost of the Deep Cover Page</title>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1" />
<link href="gp_reset.css" rel="stylesheet" media="all"/>
<link href="gp_layout.css" rel="stylesheet" media="screen"/>
<link href="gp_print.css" rel="stylesheet" media="print"/>

</head>
</head>

<body>
<header>
Expand Down
110 changes: 110 additions & 0 deletions case1/gp_layout.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
@charset "utf-8";

/*
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 5
Case Problem 1

Author: Brett and Jeremy
Date: 11/7/18

Filename: gp_layout.css

This file contains the layout styles and media
queries used with sample pages from the Golden
Pulps website.

*/


/* Import Basic Design Styles Used on All Screens */

@import url("gp_designs.css");

/* Flex Layout Styles */
body{
display: -webkit-flex;
display: -khtml-flex;
display: -moz-flex;
display: -ms-flex;
display: -o-flex;
display: flex;
-webkit-flex-flow: row wrap;
-khtml-flex-flow: row wrap;
-moz-flex-flow: row wrap;
-ms-flex-flow: row wrap;
-o-flex-flow: row wrap;
flex-flow: row wrap;
}

section#sheet {
-webkit-flex: 3 1 301px;
flex: 3 1 301px;
}

article{
-webkit-flex: 1 3 180px;
flex: 1 3 180px;
}




/* ============================================
Mobile Devices: 0 - 480 pixels
============================================
*/
@media only screen and (max-width: 480px){
img.panel{
width:100%
}

nav.horizontal{
-webkit-order: 99;
order: 99;
}

footer{
-webkit-order: 100;
order: 100;
}

}




/* ===================================================
Tablet and Desktop Devices: Greater than 480 pixels
===================================================
*/
@media only screen and (min-width: 481px){
nav.horizontal ul{
display: -webkit-flex;
display: flex;
-webkit-flex-flow: row nowrap;
flex-flow: row nowrap;
height: 40px;
}

nav.horizontal ul li{
-webkit-flex: 1 1 auto;
flex: 1 1 auto;
}

img[class^="panel size1"] {
width: 100%;
}

img[class^="panel size2"] {
width: 60%;
}
img[class^="panel size3"] {
width: 40%;
}
img[class^="panel size4"] {
width: 30%;
}

}

42 changes: 0 additions & 42 deletions case1/gp_layout_txt.css

This file was deleted.

10 changes: 7 additions & 3 deletions case1/gp_page1_txt.html → case1/gp_page1.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,18 @@
Case Problem 1

Ghost of the Deep Page 1
Author:
Date:

Author: Brett and Jeremy
Date: 11/7/18
Filename: gp_page1.html
-->

<title>Ghost of the Deep Page 1</title>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1" />
<link href="gp_reset.css" rel="stylesheet" media="all"/>
<link href="gp_layout.css" rel="stylesheet" media="screen"/>
<link href="gp_print.css" rel="stylesheet" media="print"/>
</head>

<body>
Expand Down
9 changes: 7 additions & 2 deletions case1/gp_page2_txt.html → case1/gp_page2.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,19 @@
Case Problem 1

Ghost of the Deep Page 2
Author:
Date:
Author: Brett and Jeremy
Date: 11/7/18

Filename: gp_page2.html
-->

<title>Ghost of the Deep Page 2</title>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1" />
<link href="gp_reset.css" rel="stylesheet" media="all"/>
<link href="gp_layout.css" rel="stylesheet" media="screen"/>
<link href="gp_print.css" rel="stylesheet" media="print"/>
</head>

<body>
Expand Down
9 changes: 7 additions & 2 deletions case1/gp_page3_txt.html → case1/gp_page3.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,19 @@
Case Problem 1

Ghost of the Deep Page 3
Author:
Date:
Author: Brett and Jeremy
Date: 11/7/18

Filename: gp_page3.html
-->

<title>Ghost of the Deep Page 3</title>
<meta charset="utf-8" />
<meta name="viewport"
content="width=device-width, initial-scale=1" />
<link href="gp_reset.css" rel="stylesheet" media="all"/>
<link href="gp_layout.css" rel="stylesheet" media="screen"/>
<link href="gp_print.css" rel="stylesheet" media="print"/>
</head>

<body>
Expand Down
61 changes: 61 additions & 0 deletions case1/gp_print.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
@charset "utf-8";
/*
New Perspectives on HTML5 and CSS3, 7th Edition
Tutorial 5
Case Problem 1

Author: Brett and Jeremy
Date: 11/7/18

Filename: gp_print.css

This file contains the printer styles used with the sample
comic book pages from Golden Pulps.

*/



/* Hidden Objects */
nav, footer, article {
display: none;
}






/* Comic Book Sheet Styles */
section#sheet {
width: 6in;
margin-top: 0in;
margin-bottom: 0in;
margin-left: auto;
margin-right: auto;
}

img[class^="panel size1"] {
width: 5in;
}

img[class^="panel size2"] {
width: 3in;
}
img[class^="panel size3"] {
width: 2in;
}
img[class^="panel size4"] {
width: 1.5in;
}











39 changes: 0 additions & 39 deletions case1/gp_print_txt.css

This file was deleted.

Loading