diff --git a/checkpoint-one/css/style.css b/.nojekyll similarity index 100% rename from checkpoint-one/css/style.css rename to .nojekyll diff --git a/01week/resume/CSS.css b/01week/resume/CSS.css new file mode 100644 index 0000000000..142ebd2947 --- /dev/null +++ b/01week/resume/CSS.css @@ -0,0 +1,176 @@ + +body{ + background : url('retrowave-3-dimensional-artwork-neon-oceanchrome-eb-1920x1080.jpg'); + background-repeat: no-repeat; + background-attachment: fixed; + background-position: center; + +} + + + +ul{ + list-style-type: none; + overflow:hidden; +} + +li{ + float:right; + color:white; + text-align:center; + width:15%; + height:25px; + padding: 10px; + transition: background-color 0.5s ease; + background-color: rgb(75, 75, 75); + font-family: 'Courier New', Courier, monospace; +} + +a { + text-decoration:none; +} + +a:link {color:White; background-color:transparent; text-decoration:none} +a:visited {color:White; background-color:transparent; text-decoration:none} +a:hover {color:White; background-color:transparent; text-decoration:none} +a:active {color:White; background-color:transparent; text-decoration:none} + +li:hover{ + background-color:#111111 +} + +h1{ + margin-bottom:0px; + font-size:100px; + margin-left:75px; + font-family:Arial, Helvetica, sans-serif; +} + +h2{ + padding-left: 2%; + font-size:50px; +} + +article{ + color:white; + margin-top:50px; + width:40%; + height:300px; + background-color: rgba(17, 16, 16, 0.9); + border:2px solid black; + font-size: 25px; + + +} + +nav{ + + height:50px; + width:100%; + margin-bottom:20px; +} + +header{ + padding-top:10px; + background-color: rgb(0,72,124); + width:100%; + height:75px; + border-bottom:1px solid black; +} + +p{ + padding-left: 3%; +} + + + + + +div#wrapper{ + + min-width:1000px; + + margin-left:20%; + margin-right:20%; + height:910px; + margin-bottom:20px; + margin-top: 15px; +} + +footer{ +padding:5px; +text-align:center; +} + + + +/*Wanted a fade in effect, already existed so I copy pasted the css*/ + + +/* make keyframes that tell the start state and the end state of our object */ + +@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } } +@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } } +@keyframes fadeIn { from { opacity:0; } to { opacity:1; } } + +.fade-in { + opacity:0; /* make things invisible upon start */ + -webkit-animation:fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */ + -moz-animation:fadeIn ease-in 1; + animation:fadeIn ease-in 1; + + -webkit-animation-fill-mode:forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/ + -moz-animation-fill-mode:forwards; + animation-fill-mode:forwards; + + -webkit-animation-duration:1s; + -moz-animation-duration:1s; + animation-duration:1s; +} + +/*Different varients on the fade in, controls the fade in speed*/ + +.fade-in.one { +-webkit-animation-delay: 0.7s; +-moz-animation-delay: 0.7s; +animation-delay: 0.7s; +} + +.fade-in.two { +-webkit-animation-delay: 1.2s; +-moz-animation-delay:1.2s; +animation-delay: 1.2s; +} + +.fade-in.three { +-webkit-animation-delay: 1.6s; +-moz-animation-delay: 1.6s; +animation-delay: 1.6s; +} + + +.fade-in.four { +-webkit-animation-delay: 1.8s; +-moz-animation-delay: 1.8s; +animation-delay: 1.8s; + } + + + + +p#article_p{ + font-size: 26px; + margin:7px; + padding:2px; + border-bottom: 1px solid black; + +} + +h3{ + color: rgb(255, 255, 255); + padding:0; + margin:0; + margin-left:10px; + font-family: Georgia, 'Times New Roman', Times, serif +} + diff --git a/01week/resume/Education.html b/01week/resume/Education.html new file mode 100644 index 0000000000..935744e72b --- /dev/null +++ b/01week/resume/Education.html @@ -0,0 +1,83 @@ + + + + + + + Education + + + + + + + +
+ + + + +
+ + + +
+ +
+

Education

+
+ +
+ I am still in High School lmao +
+ +
+ + + + + +
+ + + +
+ + + + + diff --git a/01week/resume/Portfolio.html b/01week/resume/Portfolio.html new file mode 100644 index 0000000000..5bbb7bb02d --- /dev/null +++ b/01week/resume/Portfolio.html @@ -0,0 +1,255 @@ + + + + + + + Portfolio + + + + + + + +
+ + + + +
+ + + +
+ +
+

Portfolio

+
+ + +
+ +
+ +
+

Output

+

+ Test Encryption - Inputed string/information

+ 84 + 101 + 115 + 116 + 32 + 69 + 110 + 99 + 114 + 121 + 112 + 116 + 105 + 111 + 110
+ - Ascii values

+ 9 8 1 2 4 + - Encryption code

+ + 15 15 + - Ascii array and Encrypted array length(s)

+ + 28556 + 11110 + 13586 + 17909 + 4049 + 8792 + 18117 + 8954 + 13469 + 32458 + 14435 + 12760 + 17136 + 12210 + 11100
+ - Encrypted ascii

+ + 84 + 101 + 115 + 116 + 32 + 69 + 110 + 99 + 114 + 121 + 112 + 116 + 105 + 111 + 110
+ - Decrypted ascii

+ Test Encryption - Original Message
+

+ + +
+

Encryption

+
+

Code Snippit

+

+ + public static void encrypt(){
+ + int a = code.charAt(0)-48;
+ int b = code.charAt(1)-48;
+ int c = code.charAt(2)-48;
+ int d = code.charAt(3)-48;
+ int e = code.charAt(4)-48;
+ + for(int i = 0;i<INIT_MSG.length();i++)
{
+ encyp_ascii_array[i] = asciiarray[i] *(a-(b*b))*(d-e);
+ +
+ /* Because this isn't random enough looking and gives similar modifications + to similar characters (an a will have the same value as another a farther + in the sequence) This next set of modifactions is applied based on sequence, + not ascii value.*/

+ + if(i%2==0 ){
+ encyp_ascii_array[i] +=e*a*d*c*a;
+ }
+ if(i%3==0 ){
+ encyp_ascii_array[i] +=a*d*e+c+5000;
+ }
+ if(i%4==0 ){
+ encyp_ascii_array[i] +=d-c*d*a*c*a;
+ } + + /* For each value 0-9, there are 2 additional modifiers + based on sequence*/ + } + + + +

+ + + +
+ +
+

Output

+

+ Honestly this worked at one point but our router changed + and because of that I had to redo the port forwarding and + now it's big broke. + +

+ + +
+

TextSend

+
+

Code Snippit

+

+ //Client Run() Method

+ public void run() throws Exception{
+ Socket socket = new Socket("172.8.169.224", 1100);
+ printstream = new PrintStream(socket.getOutputStream());
+ + + InputStreamReader InputReader = new InputStreamReader(socket.getInputStream());
+ BufferedReader BufferedReader = new BufferedReader(InputReader);
+ + while(true){
+ + + String Message = BufferedReader.readLine(); //Reads server input
+ client_GUI.ServerInput("Server: "+Message); //outputs server input to client screen
+ System.out.println(Message); + + }
+ }
+ +
//Server Run() Methond

+ public void run() throws Exception{
+ ServerSocket ServerSocket = new ServerSocket(1100);
+ Socket Socket = ServerSocket.accept();
+ printstream = new PrintStream(Socket.getOutputStream());
+ + + InputStreamReader InputReader = new InputStreamReader(Socket.getInputStream());
+ BufferedReader BufferedReader = new BufferedReader(InputReader);
+ + + + + while(true){
+ + String Message = BufferedReader.readLine();
+ Server_GUI.ServerInput("Client: "+Message);
+ System.out.println(Message);
+ + + }
+ }
+ +

+ + +
+
+
+ + + + + + + + + + + + + + + + diff --git a/01week/resume/Referals.html b/01week/resume/Referals.html new file mode 100644 index 0000000000..14f18a5347 --- /dev/null +++ b/01week/resume/Referals.html @@ -0,0 +1,126 @@ + + + + + + + Referals + + + + + + + +
+ + + + +
+ + + +
+ +
+

Referals

+
+ +
+

+ Paintopia LLC +

+ +

+ Status: Part time
+ Title: House Painter
+ Supervisor: David
+ Job responsiblites: Painting, masking, cleanup
+ Employed from: 2015-present
+

+ +
+ +
+

+ Metropolitan Tree Service +

+

+ Status: Part time
+ Title: Ground man
+ Superviser: Leo
+ Job Responsibilites: Clearing debris, driving, safe powertool use
+ Employed from: 2017-present
+

+ +
+
+

+ Alliance Chiropractic +

+ +

+ Status: Terminated
+ Title: Stock boy
+ Superviser: Vivian
+ Job Responsibilites: Cleaning, stocking shelves, product organization
+ Employed from: 2014-2015
+ +

+ +
+ + + + +
+ + + + + +
+ + + +
+ + + + + diff --git a/01week/resume/Resume.pdf b/01week/resume/Resume.pdf new file mode 100644 index 0000000000..0309c0e07e Binary files /dev/null and b/01week/resume/Resume.pdf differ diff --git a/01week/resume/UC.html b/01week/resume/UC.html new file mode 100644 index 0000000000..1e532a7aaa --- /dev/null +++ b/01week/resume/UC.html @@ -0,0 +1,5 @@ +This page is under construction + + + Click here to return home + \ No newline at end of file diff --git a/01week/resume/css/style.css b/01week/resume/css/style.css deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/01week/resume/index.html b/01week/resume/index.html index e69de29bb2..5ecd2ee2ef 100644 --- a/01week/resume/index.html +++ b/01week/resume/index.html @@ -0,0 +1,134 @@ + + + + + + + Home + + + + + + + +
+ + + + +
+ + + +
+ +
+

Jarboe.

+
+ + + +
+

"Innovator"

+
+ +
+ + +

+ -Object orientated java +

+

+ -Gimp image editing +

+

+ -Unity game development +

+

+ -Blender 3d model creation +

+

+ -HTML/CSS +

+ +
+ +
+

"Designer"

+
+ +
+

"Web Developer"

+
+ + + +
+ +
+ + + + +
+ + + + + +
+ + + +
+ + + + + diff --git a/01week/resume/retrowave-3-dimensional-artwork-neon-oceanchrome-eb-1920x1080.jpg b/01week/resume/retrowave-3-dimensional-artwork-neon-oceanchrome-eb-1920x1080.jpg new file mode 100644 index 0000000000..da7e104bcf Binary files /dev/null and b/01week/resume/retrowave-3-dimensional-artwork-neon-oceanchrome-eb-1920x1080.jpg differ diff --git a/01week/resume/wallhaven-440766.jpg b/01week/resume/wallhaven-440766.jpg new file mode 100644 index 0000000000..4f315f2505 Binary files /dev/null and b/01week/resume/wallhaven-440766.jpg differ diff --git a/02week/bio/.vs/ProjectSettings.json b/02week/bio/.vs/ProjectSettings.json new file mode 100644 index 0000000000..f8b4888565 --- /dev/null +++ b/02week/bio/.vs/ProjectSettings.json @@ -0,0 +1,3 @@ +{ + "CurrentProjectSetting": null +} \ No newline at end of file diff --git a/02week/bio/.vs/VSWorkspaceState.json b/02week/bio/.vs/VSWorkspaceState.json new file mode 100644 index 0000000000..6b6114114f --- /dev/null +++ b/02week/bio/.vs/VSWorkspaceState.json @@ -0,0 +1,6 @@ +{ + "ExpandedNodes": [ + "" + ], + "PreviewInSolutionExplorer": false +} \ No newline at end of file diff --git a/02week/bio/.vs/bio/v15/.suo b/02week/bio/.vs/bio/v15/.suo new file mode 100644 index 0000000000..78e4e53e11 Binary files /dev/null and b/02week/bio/.vs/bio/v15/.suo differ diff --git a/02week/bio/.vs/slnx.sqlite b/02week/bio/.vs/slnx.sqlite new file mode 100644 index 0000000000..474589fab4 Binary files /dev/null and b/02week/bio/.vs/slnx.sqlite differ diff --git a/03week/airplane/css/style.css b/03week/airplane/css/style.css deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/03week/airplane/index.html b/03week/airplane/index.html index e69de29bb2..2754b519c2 100644 --- a/03week/airplane/index.html +++ b/03week/airplane/index.html @@ -0,0 +1,74 @@ + + + + + Airline Project + + + + +
+ +
+ + +

Register/login

+ +

Flight Schedule

+ +

Travel Deals

+ +

Home

+ + + + +
+ + + + +
+
+ +
+ + + +
+
+ + + + +
+ +

Passengers

+ + +
+ + Return + One Way +
+ + +
+
+
+ + + + \ No newline at end of file diff --git a/03week/airplane/style.css b/03week/airplane/style.css new file mode 100644 index 0000000000..204b8d54be --- /dev/null +++ b/03week/airplane/style.css @@ -0,0 +1,151 @@ + +body { + background-image: url("img/airline.jpg"); + background-position: top; + background-repeat: no-repeat; + background-size: 1920px 1080px; + margin:0; +} + + +header{ + background-color:#193A55; + border-bottom:1px solid white; +} + +h4{ + float:right; + color:white; + margin-left:5px; +} + +main{ +margin-left:100px; +width:25%; +height:300px; +margin-top:100px; +} + + + +ul{ + margin: 0 auto; + width:101%; + padding:0; + list-style-type: none; + overflow:hidden; + + border-radius:3px; +} +article{ + margin: 0 auto; + background-color:#123956; + + height:250px; + + + padding-top:30px; + padding-left:10px; +} + +li{ + + float:left; + color:white; + text-align:center; + width:33%; + background-color:#008E80 ; + +} + + +h3{ + float:left; + margin:0; + margin-top:7px; + margin-right:20px; + color:white; + font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; +} + + +li:hover{ + background-color: #0064B9; +} + +[type ="text"]{ + float:left; + border-style:none; + border-radius:3px; + border:1px solid white; + height:30px; + background-color:#123956; + color:white; + margin-bottom:20px; + margin-right:25px; + width:200px; +} + +[type ="button"]{ + font-size:18px; + border:none; + border-radius: 3px; + color:white; + background-color:#0064B9; + margin-top:30px; + width:98%; + height:50px; + +} +select{ + margin-right: 20px; + border:1px solid white; + background-color:#123956; + height: 40px; + width: 86px; + color:white; + border-radius:3px; +} + +option{ + +} + + +.logo{ + margin-right:0; + margin-left:50px; + +} +.headermenu{ + margin-top:15px; + float:right; + width:50%; + height:auto; + margin-right: 120px; +} + +.icon { + float: right; + margin-top: 21px; + margin-left: 20px; + margin-right:2px; + + +} + +.wrapper{ + width:1920px; +} + + + + +/* #layout > div:nth-child(2){ + background-color: purple; + width: 50%; + height: 25%; + position: absolute; + bottom:0; + left: 25%; +} */ \ No newline at end of file diff --git a/checkpoint-one/Fonts/Walkway.ttf b/checkpoint-one/Fonts/Walkway.ttf new file mode 100644 index 0000000000..4e780570bc Binary files /dev/null and b/checkpoint-one/Fonts/Walkway.ttf differ diff --git a/checkpoint-one/images/Customers.png b/checkpoint-one/images/Customers.png new file mode 100644 index 0000000000..83ea69465e Binary files /dev/null and b/checkpoint-one/images/Customers.png differ diff --git a/checkpoint-one/images/Logo2.png b/checkpoint-one/images/Logo2.png new file mode 100644 index 0000000000..204007cbf7 Binary files /dev/null and b/checkpoint-one/images/Logo2.png differ diff --git a/checkpoint-one/images/Plate.jpg b/checkpoint-one/images/Plate.jpg new file mode 100644 index 0000000000..a57184b984 Binary files /dev/null and b/checkpoint-one/images/Plate.jpg differ diff --git a/checkpoint-one/images/hydro1.jpg b/checkpoint-one/images/hydro1.jpg new file mode 100644 index 0000000000..56fbc1863d Binary files /dev/null and b/checkpoint-one/images/hydro1.jpg differ diff --git a/checkpoint-one/images/icon.ico b/checkpoint-one/images/icon.ico new file mode 100644 index 0000000000..2380fdddec Binary files /dev/null and b/checkpoint-one/images/icon.ico differ diff --git a/checkpoint-one/images/missionimg.jpg b/checkpoint-one/images/missionimg.jpg new file mode 100644 index 0000000000..76c2962387 Binary files /dev/null and b/checkpoint-one/images/missionimg.jpg differ diff --git a/checkpoint-one/images/partnerbanner.png b/checkpoint-one/images/partnerbanner.png new file mode 100644 index 0000000000..538a936f26 Binary files /dev/null and b/checkpoint-one/images/partnerbanner.png differ diff --git a/checkpoint-one/images/products/Dill.jpg b/checkpoint-one/images/products/Dill.jpg new file mode 100644 index 0000000000..99c40b8c84 Binary files /dev/null and b/checkpoint-one/images/products/Dill.jpg differ diff --git a/checkpoint-one/images/products/arugula.jpg b/checkpoint-one/images/products/arugula.jpg new file mode 100644 index 0000000000..d75b588600 Binary files /dev/null and b/checkpoint-one/images/products/arugula.jpg differ diff --git a/checkpoint-one/images/products/basil.jpg b/checkpoint-one/images/products/basil.jpg new file mode 100644 index 0000000000..26b61a11a0 Binary files /dev/null and b/checkpoint-one/images/products/basil.jpg differ diff --git a/checkpoint-one/images/products/bell pepper.jpg b/checkpoint-one/images/products/bell pepper.jpg new file mode 100644 index 0000000000..874b0e4a5c Binary files /dev/null and b/checkpoint-one/images/products/bell pepper.jpg differ diff --git a/checkpoint-one/images/products/brocoli.jpg b/checkpoint-one/images/products/brocoli.jpg new file mode 100644 index 0000000000..7bf2b375a7 Binary files /dev/null and b/checkpoint-one/images/products/brocoli.jpg differ diff --git a/checkpoint-one/images/products/cantalope.png b/checkpoint-one/images/products/cantalope.png new file mode 100644 index 0000000000..9a7af87b1f Binary files /dev/null and b/checkpoint-one/images/products/cantalope.png differ diff --git a/checkpoint-one/images/products/celery.jpg b/checkpoint-one/images/products/celery.jpg new file mode 100644 index 0000000000..730054df6f Binary files /dev/null and b/checkpoint-one/images/products/celery.jpg differ diff --git a/checkpoint-one/images/products/chili.jpg b/checkpoint-one/images/products/chili.jpg new file mode 100644 index 0000000000..907ee110ed Binary files /dev/null and b/checkpoint-one/images/products/chili.jpg differ diff --git a/checkpoint-one/images/products/chives.jpg b/checkpoint-one/images/products/chives.jpg new file mode 100644 index 0000000000..61fe059930 Binary files /dev/null and b/checkpoint-one/images/products/chives.jpg differ diff --git a/checkpoint-one/images/products/cilantro.jpg b/checkpoint-one/images/products/cilantro.jpg new file mode 100644 index 0000000000..3113489770 Binary files /dev/null and b/checkpoint-one/images/products/cilantro.jpg differ diff --git a/checkpoint-one/images/products/cucumber.jpg b/checkpoint-one/images/products/cucumber.jpg new file mode 100644 index 0000000000..0fc4973cdf Binary files /dev/null and b/checkpoint-one/images/products/cucumber.jpg differ diff --git a/checkpoint-one/images/products/jalapeno.jpg b/checkpoint-one/images/products/jalapeno.jpg new file mode 100644 index 0000000000..3795287c9e Binary files /dev/null and b/checkpoint-one/images/products/jalapeno.jpg differ diff --git a/checkpoint-one/images/products/kale.jpeg b/checkpoint-one/images/products/kale.jpeg new file mode 100644 index 0000000000..eb7b5910ee Binary files /dev/null and b/checkpoint-one/images/products/kale.jpeg differ diff --git a/checkpoint-one/images/products/lavender.jpg b/checkpoint-one/images/products/lavender.jpg new file mode 100644 index 0000000000..140f43eecc Binary files /dev/null and b/checkpoint-one/images/products/lavender.jpg differ diff --git a/checkpoint-one/images/products/lettuce.jpg b/checkpoint-one/images/products/lettuce.jpg new file mode 100644 index 0000000000..4c36623b81 Binary files /dev/null and b/checkpoint-one/images/products/lettuce.jpg differ diff --git a/checkpoint-one/images/products/micro beets.jpg b/checkpoint-one/images/products/micro beets.jpg new file mode 100644 index 0000000000..3db3ba4604 Binary files /dev/null and b/checkpoint-one/images/products/micro beets.jpg differ diff --git a/checkpoint-one/images/products/mustard.jpg b/checkpoint-one/images/products/mustard.jpg new file mode 100644 index 0000000000..729f476278 Binary files /dev/null and b/checkpoint-one/images/products/mustard.jpg differ diff --git a/checkpoint-one/images/products/saffron.jpg b/checkpoint-one/images/products/saffron.jpg new file mode 100644 index 0000000000..a85bd8a9e5 Binary files /dev/null and b/checkpoint-one/images/products/saffron.jpg differ diff --git a/checkpoint-one/images/products/sage.jpeg b/checkpoint-one/images/products/sage.jpeg new file mode 100644 index 0000000000..ea4e85b41d Binary files /dev/null and b/checkpoint-one/images/products/sage.jpeg differ diff --git a/checkpoint-one/images/products/spinach4.jpg b/checkpoint-one/images/products/spinach4.jpg new file mode 100644 index 0000000000..82251673ca Binary files /dev/null and b/checkpoint-one/images/products/spinach4.jpg differ diff --git a/checkpoint-one/images/products/squash.jpg b/checkpoint-one/images/products/squash.jpg new file mode 100644 index 0000000000..d3a7ec73ed Binary files /dev/null and b/checkpoint-one/images/products/squash.jpg differ diff --git a/checkpoint-one/images/products/strawberry.jpg b/checkpoint-one/images/products/strawberry.jpg new file mode 100644 index 0000000000..7ad03d4bcf Binary files /dev/null and b/checkpoint-one/images/products/strawberry.jpg differ diff --git a/checkpoint-one/images/products/tomato.jpg b/checkpoint-one/images/products/tomato.jpg new file mode 100644 index 0000000000..292ff820c3 Binary files /dev/null and b/checkpoint-one/images/products/tomato.jpg differ diff --git a/checkpoint-one/images/products/watermelon.jpg b/checkpoint-one/images/products/watermelon.jpg new file mode 100644 index 0000000000..1591cd91ed Binary files /dev/null and b/checkpoint-one/images/products/watermelon.jpg differ diff --git a/checkpoint-one/images/productsbanner.jpg b/checkpoint-one/images/productsbanner.jpg new file mode 100644 index 0000000000..fc84aef2c2 Binary files /dev/null and b/checkpoint-one/images/productsbanner.jpg differ diff --git a/checkpoint-one/images/social/fb.png b/checkpoint-one/images/social/fb.png new file mode 100644 index 0000000000..97ce38d76a Binary files /dev/null and b/checkpoint-one/images/social/fb.png differ diff --git a/checkpoint-one/images/social/ig.png b/checkpoint-one/images/social/ig.png new file mode 100644 index 0000000000..ff0582dd4c Binary files /dev/null and b/checkpoint-one/images/social/ig.png differ diff --git a/checkpoint-one/images/social/in.png b/checkpoint-one/images/social/in.png new file mode 100644 index 0000000000..9b5f2d13fb Binary files /dev/null and b/checkpoint-one/images/social/in.png differ diff --git a/checkpoint-one/index.html b/checkpoint-one/index.html index 8b13789179..7e36be161b 100644 --- a/checkpoint-one/index.html +++ b/checkpoint-one/index.html @@ -1 +1,99 @@ + 6n + + + + + Urban Growth + + + + + +
+
+ +
+

Home

+

Products

+

Customers

+

Contact

+

Partner

+ +
+
+ + + +
+

Local, Rare, Fresh

+ +
+ + +
+

Our Mission

+

+ As the only vertical farming company growing 100s of + different specialty crops in city centers, Urban Growth + is constantly innovating above and beyond the basic + vertical farming approach. We believe smaller farms + close to customers can provide most or all of the + specialty produce for tomorrow's cities. +

+ + +
+ +
+

Products

+

Our unique production methods grow over 500 + different microgreens,edible flowers and rare + herbs year-round.

We deliver to the city's best + restaurants by bike and subway, within just hours + of harvest. There's nothing fresher. +

+

Browse

+ + + +
+ + + +
+

Customers

+ +
+ +
+

Contact Us

+
+ + + +
+ +
+ + + + + + +
+ + + + + diff --git a/checkpoint-one/partner.html b/checkpoint-one/partner.html new file mode 100644 index 0000000000..d83c5bafc0 --- /dev/null +++ b/checkpoint-one/partner.html @@ -0,0 +1,71 @@ + + + + + + + Urban Growth + + + + + +
+
+ +
+

Home

+

Products

+

Customers

+

Contact

+

Partner

+ +
+
+ + + +
+

Become a partner!

+ +
+ + +
+

Partner

+

+ Join a community of dedicated agrocultural leaders + and provide your community with farm fresh, delicious produce + to promote a healthier lifestyle. By becoming an UrbanGrowth + partner, you will get fresh produce delivered within 3 hours + of your order that all of your customers will love. Local + produce, rare herbs, instant delivery. UrbanGrowth. + +

+

Join Today!

+ + +
+ + + + + + + +
+ + + + + diff --git a/checkpoint-one/products.html b/checkpoint-one/products.html new file mode 100644 index 0000000000..d1b96887e8 --- /dev/null +++ b/checkpoint-one/products.html @@ -0,0 +1,173 @@ + + + + + + + Urban Growth + + + + + +
+
+ +
+

Home

+

Products

+

Customers

+

Contact

+

Partner

+
+ +
+
+

Products

+ +
+ + + + + +
+
+ +

Arugala

+
+ +
+ +

Basil

+
+ +
+ +

Bell Peppers

+
+ +
+ +

Brocoli

+
+
+ +

Micro Beets

+
+ +
+ +

Cantalope

+
+ +
+ +

Celery

+
+ +
+ +

Chili

+
+ +
+ +

Chives

+
+ +
+ +

Cilantro

+
+ +
+ +

Cucumber

+
+ +
+ +

Dill

+
+
+ +

Jalapeno

+
+ +
+ +

Kale

+
+ +
+ +

Lavender

+
+ +
+ +

Lettuce

+
+
+ +

Mustarda

+
+ +
+ +

Saffron

+
+ +
+ +

Sage

+
+ +
+ +

Spinach

+
+
+ +

Squash

+
+ +
+ +

Strawberry

+
+ +
+ +

Tomato

+
+ +
+ +

Watermelon

+
+ + + +
+ + + +
+ + + + + + diff --git a/checkpoint-one/style.css b/checkpoint-one/style.css new file mode 100644 index 0000000000..3e65aa679c --- /dev/null +++ b/checkpoint-one/style.css @@ -0,0 +1,287 @@ +@font-face { + font-family: raleway; + src: url("Fonts/Walkway.ttf"); +} + +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +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, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + + + + +a {color:white; background-color:transparent; text-decoration:none} + + +/*--------------------Body-------------------*/ +body{ + margin:0; /* zeros border around banners */ +} +/*--------------------Header-------------------*/ +header{ + position:absolute; /*Allows logo to be on top of banner*/ +} + +header div:nth-of-type(1){ /*header menu*/ + position:fixed; + right:30px; + background-color:rgba(124, 102, 102, 0.336); + border:1px solid black; + border-radius: 3px; +} + +h2{ /*Menu text*/ + font-family: raleway; + font-size:25px; + padding:5px; + margin:0; + height:40px; + border:1px solid rgba(0, 0, 0, 0); /*Gives an invisible border to prevent resizing on hover*/ + -webkit-transition: background-color 0.5s ease-in-out; +} + +h2:hover{ + border: 1px solid black; + background-color:rgba(121, 74, 84, 0.521); +} +/*--------------------Urban Grown Logo-------------------*/ +img.logo{ + width:475px; + margin-top:10px; + margin-left:20px; +} +/*--------------------Home banner-------------------*/ +.imagebanner{ + padding-top:100px; /*without this the banner has 100px of whitespace.*/ + background-image: url("images/hydro1.jpg"); + height:500px; + background-size:100%; + border-bottom:80px solid rgb(56, 41, 41); +} +.imagebanner >h3{ + font-size:80px; + margin-top:150px; + margin-left: 620px; + color:white; +} +/*-----------------Mission----------------------*/ +#mission{ + height:500px; +} +#mission >p { + text-align:center; + float:left; + width:30%; + margin-top:0; + margin-left:300px; + padding:20px; +} +#mission >img { + width:35%; + margin-left: 40px; + border:2px solid black; + border-radius:5px; +} +#mission >h3 { + width:18%; + margin: 30px auto; + margin-left:24%; +} +/*----------------------products-------------------------*/ +/*positioning needs to be absolute in order for everything to stack correctly*/ + +#product >h3 { + position: absolute; + left:1050px; + margin-top:150px; +} +#product >p { + width:500px; + background-color:white; + position: absolute; + left:1050px; + margin-top:250px; +} +#product > a> h4 { + text-align:center; + position: absolute; + background-color:#EE415A; + width:100px; + padding:10px; + border: 1px solid black; + border-radius: 4px; + margin-left:1050px; + margin-top:520px; +} +#product >a >h4:hover{ + background-color:#DF6372; +} +img.product{ + width:35%; + height:620px; + margin-left:15%; + margin-top:20px; +} +/*---------------------Customers-------------------------*/ + +#customers{ +margin-top:50px; +} + +#customers >h3{ +width: 16%; +margin: 0 auto; +margin-bottom:40px; +} +/*Needs separete definitions because .imagebanner allows objects to exist on top*/ +#customers >img{ +height:600px; +width:100%; +} +/*--------------------Contact---------------------------*/ + +#contact >h3 { + margin:0 auto; + width:15.5%; + border-bottom:1px solid #EE415A; +} +form{ + margin-top:30px; + margin-left:30%; + margin-bottom:20px; + width:40%; +} +[type =text]{ + text-align:center; + width:40%; + height:20px; + margin-left:6.4%; +} +#message{ + display:block; + margin: 0 auto; + width:40%; + height:300px; + resize:none; +} + +/*---------------Footer---------------------------*/ +footer{ + margin-top:100px; + margin-left:780px; + margin-bottom:20px; +} +img.social{ + margin-top:70px; + margin-right:20px; + height:100px; + width:100px; +} +/*-------------------Universal (All pages use these)------------------------*/ + +p { + font-size:30px; +} + +h3{ + color:rgb(43, 30, 30); + font-family: raleway; + font-size:60px; +} + +h4{ + font-family: raleway; + font-size:25px; + text-align: center; + margin-bottom:5px; +} + +.wrapper{ + width:1900px; +} +a> h4{ + text-align:center; + font-family:raleway; + font-size:25px; + background-color:#EE415A; + width:20%; + padding:10px; + border: 1px solid black; + border-radius: 4px; + color:white; + margin: 0 auto; + margin-top:20px; +} +a>h4:hover{ + background-color:#DF6372; +} + +/*-------------Products page specific-------------*/ +#productbanner >h3{ + width:20%; + margin:0 auto; + margin-top:150px; + font-size:90px; +} +main{ + width:80%; + margin-left:20%; +} +.productwrap{ + border:1px solid white; + width:20%; + float:left; + -webkit-transition: border 0.2s ease-in-out; +} +.productwrap >img{ + width:100%; + height:250px; +} +.productwrap:hover{ +border: 1px solid black; +} +#productfooter{ /*This breaks if it isn't absolute*/ + top:2500px; + position: absolute; + margin-bottom:20px; +} +#productbanner{ /*Just changes the banner image*/ + background-image: url("images/productsbanner.jpg") +} + + +/*----------partner page specific-------------*/ +#partnerbanner{ + background-image: url("images/partnerbanner.png") +} +#partner> #partnerstatement >p { +width: 40%; +margin:0 auto; +text-align: center; +} +#partner> #partnerstatement > h3{ +width:10%; +margin:10px auto; +} diff --git a/images/background.jpg b/images/background.jpg new file mode 100644 index 0000000000..5599a47248 Binary files /dev/null and b/images/background.jpg differ diff --git a/images/bio.png b/images/bio.png new file mode 100644 index 0000000000..1b84400f76 Binary files /dev/null and b/images/bio.png differ diff --git a/images/fb.png b/images/fb.png new file mode 100644 index 0000000000..97ce38d76a Binary files /dev/null and b/images/fb.png differ diff --git a/images/ig.png b/images/ig.png new file mode 100644 index 0000000000..ff0582dd4c Binary files /dev/null and b/images/ig.png differ diff --git a/images/img1.jpg b/images/img1.jpg new file mode 100644 index 0000000000..309f63a49c Binary files /dev/null and b/images/img1.jpg differ diff --git a/images/in.png b/images/in.png new file mode 100644 index 0000000000..9b5f2d13fb Binary files /dev/null and b/images/in.png differ diff --git a/images/week1.png b/images/week1.png new file mode 100644 index 0000000000..481d7cad89 Binary files /dev/null and b/images/week1.png differ diff --git a/index.html b/index.html index 8924f2b385..e5b948ca07 100644 --- a/index.html +++ b/index.html @@ -1,10 +1,103 @@ + -

Hello world!

+
+
+

Landing

+
+ +
+

RESUME

+

WEEK

+ + + + + +
+ +
+

BIO

+

WEEK 2

+ + + +
+ +
+

WEEK 3

+ + + +
+ +
+

WEEK 4

+ + + +
+ +
+

WEEK 5

+ + + +
+ +
+

WEEK 6

+ + + +
+ +
+

WEEK 7

+ + + +
+ +
+

WEEK 8

+ + + +
+ +
+

WEEK 9

+ + + +
+ + + + + +
+ diff --git a/nofile.html b/nofile.html new file mode 100644 index 0000000000..c41db17445 --- /dev/null +++ b/nofile.html @@ -0,0 +1,5 @@ +Sorry the page you are looking for is unavailable + + + Click here to return to landing + \ No newline at end of file diff --git a/style.css b/style.css index 65eacb2efb..88eb131377 100644 --- a/style.css +++ b/style.css @@ -1 +1,89 @@ -/* You can style your links page here */ +body{ + margin:auto; + width:1400px; + + background: url(images/background.jpg); + background-repeat: no-repeat; + background-size: 1920px; +} +header{ + text-align: center; + margin-bottom:0; +} +h1{ + font-family: 'Times New Roman', Times, serif; + font-size: 75px; + padding:0; + margin-top:15px; + margin-bottom:15px; + border-bottom: 5px solid white; +} + +h2{ + font-family: 'Times New Roman', Times, serif; + font-size:50px; + position: absolute; + padding:76px; + padding-top:50px; + padding-bottom:101px; + width:11.8%; + text-align:center; + margin-top:0; + border:2px solid white; + min-width: 222px; + +} +article h2:nth-child(2){ + font-size:40px; + border:none; + margin-top:50px; +} + +article{ + margin-left:5%; + margin-top:70px; + width:27%; + height:214px; + background-color:rgba(0, 0, 0, 0.486); + display:inline-block; + +} + +#wrapper{ + width:1400px; + +} + +article:nth-of-type(1) , article:nth-of-type(2), article:nth-of-type(3){ + margin-top:0; +} + + +img.top:hover{ + opacity:0; + +} + +.top{ + -webkit-transition: opacity 0.7s ease-in-out; + min-width: 380px; +} + +img.social{ + position: relative; + width:50px; + border:none; +} + +img.top{ + position: absolute; + width:20%; + margin:none; + display:inline-block; + +} + + +footer{ + margin-top: 70px; +} \ No newline at end of file