diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..e69de29 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/Thumbs.db b/Thumbs.db new file mode 100644 index 0000000..e69de29 diff --git a/envelope.png b/envelope.png new file mode 100644 index 0000000..11d5c98 Binary files /dev/null and b/envelope.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..66186d8 --- /dev/null +++ b/index.html @@ -0,0 +1,84 @@ + + + + + + Projects | Jubilee Austen + + + + + + + + +
+
+

Jubilee Austen

+ +
+
+
+
+
+

Projects

+
+ Rogue Pickings 
+                            Site +

Rogue Pickings

+

A simple home page perfect for a pop-up restaurant or food truck. Originally a static website, I + converted it into a responsive design using Flexbox.

+
+
+ Unplugged Site +

Unplugged

+

A multi-page responsive website coded with Flexbox. This versatile design has sections, including + a cards design pattern, that can be repurposed for different sites.

+
+
+ Guess the Word Game +

Guess the Word Game

+

Players guess the word by entering one letter at a time. If the player guesses all the letters + correctly before they use up their allotted guesses, they win!

+
+
+
+
+ + + + \ No newline at end of file diff --git a/index.html2.html b/index.html2.html new file mode 100644 index 0000000..aa0c2cb --- /dev/null +++ b/index.html2.html @@ -0,0 +1,93 @@ + + + + + + Jubilee Austen | Portfolio + + + + + + + + +
+
+

Jubilee Austen

+ +

Hi, I'm a developer that loves clean & elegant code.

+
+
+
+
+
+

A little bit about me.

+

My tech journey started with a degree in journalism. I loved researching, writing, and sharing my + voice online, but something felt missing. I wished for a way to share and display information + exactly the way I wanted. That's when I discovered and fell in love with coding and web design!

+

As a front end developer, I pride myself on writing code that's easy to read and build upon while + still looking great. My goal with every site is to provide a top-of-the-line user experience. + Besides web development, I enjoy gardening and spending time with my small (but growing!) family. +

+
+
+
+
+

Developer Skills

+
+ html icon +

HTML & CSS

+

I pride myself on my organized and well-formatted HTML and CSS. All my code is tested to ensure + it's valid, accessible for all users, and works great on the major browsers.

+
+
+ pencil icon +

Design to Code

+

If you have a design, I can turn it into a website! I'll use the exact colors, fonts, and imagery + you need. You provide the design comp, and I'll code up a site just for you.

+
+
+ GitHub icon +

Git & GitHub

+

I never work on a project without my best friends Git and GitHub! I can collaborate with your + team on any codebase and adjust to your team's version control workflow.

+
+
+
+
+ + + + \ No newline at end of file diff --git a/main.css b/main.css new file mode 100644 index 0000000..0fba216 --- /dev/null +++ b/main.css @@ -0,0 +1,226 @@ +/****** Global Styles ******/ +body { + font-family: 'Source Sans Pro', sans-serif; + color: #5e5d5e; +} + +.content-wrapper { + width: 1200px; + margin: 0 auto; + overflow: auto; +} + +/****** Header Styles ******/ +.homepage-hero { + background: url('../img/full-background.png'), #f9efef; + background-size: cover; + background-position: center; + height: 800px; +} + +header h1 { + float: left; + width: 300px; + font-family: 'Lora', serif; + font-size: 30px; + color: #7b7e54; + padding: 65px 0 65px 25px; +} + +header nav { + width: 800px; + float: right; + text-align: right; + padding: 75px 25px 75px 0; +} + +nav ul li { + display: inline-block; +} + +nav ul li a { + text-transform: uppercase; + font-size: 18px; + color: #727172; + padding-left: 50px; +} + +header h2 { + width: 1000px; + clear: both; + font-family: 'Lora', serif; + font-size: 72px; + line-height: 80px; + color: #817f80; + padding: 20px 0 20px 25px; +} + +/****** About Styles ******/ +#about .content-wrapper { + padding: 80px 0; +} + +#about h2 { + font-family: 'Lora', serif; + font-size: 36px; + padding-left: 50px; +} + +#about p { + float: left; + width: 500px; + font-size: 20px; + line-height: 40px; + padding: 0 50px; +} + +/****** Skill Styles ******/ +#skills { + background: #f5f5f5; + text-align: center; +} + +#skills .content-wrapper { + padding: 115px 0; +} + +#skills .skill-list { + float: left; + width: 300px; + padding: 0 50px; +} + +#skills h2 { + font-family: 'Lora', serif; + font-size: 36px; + padding-bottom: 40px; +} + +#skills h3 { + font-size: 24px; + line-height: 36px; + margin: 30px 0 20px 0; +} + +#skills p { + font-size: 20px; + line-height: 40px; + text-align: left; +} + +/****** Contact Styles ******/ +#contact { + background: #f9e9e9; +} + +#contact .content-wrapper { + padding: 110px 0; +} + +#contact .contact-image { + float: left; + width: 600px; +} + +#contact #contact-img { + width: 500px; + height: 300px; + border: 12px solid #ffffff; + margin: 0 50px; + box-sizing: border-box; +} + +#contact .contact-info { + float: left; + width: 600px; + padding-left: 100px; + box-sizing: border-box; +} + +#contact h2 { + font-family: "Lora", serif; + font-weight: 600; + font-size: 36px; + margin: 30px 0; +} + +#contact h3 { + font-size: 24px; + font-weight: 400; + line-height: 36px; +} + +#contact #email-header { + margin-bottom: 5px; +} + +#contact #socialmedia-header { + margin: 20px 0 5px 0; +} + +#contact #envelope { + padding-right: 10px; +} + +#contact a { + text-decoration: none; + color: #5e5d5e; + font-size: 24px; + line-height: 36px; +} + +#contact ul { + margin-top: 0; + padding-left: 0; +} + +#contact ul li { + display: inline-block; +} + +#contact ul img { + padding-right: 40px; +} + +/****** Projects Page Styles ******/ +/****** Projects Page Header Styles ******/ +header.extra-hero { + background: #f9efef; +} + +/****** Projects Page Projects Styles ******/ +#projects { + background: #f5f5f5; + text-align: center; +} +#projects .content-wrapper { + padding: 115px 0; +} + +#projects .project-piece { + float: left; + width: 300px; + padding: 0 50px; +} + +#projects h2 { + font-family: 'Lora', serif; + font-size: 36px; + padding-bottom: 40px; +} + +#projects img { + width: 300px; + padding-bottom: 30px; +} + +#projects h3 { + font-size: 24px; + line-height: 36px; +} + +#projects p { + font-size: 20px; + line-height: 40px; + text-align: left; +} \ No newline at end of file diff --git a/normalize.css b/normalize.css new file mode 100644 index 0000000..192eb9c --- /dev/null +++ b/normalize.css @@ -0,0 +1,349 @@ +/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */ + +/* Document + ========================================================================== */ + +/** + * 1. Correct the line height in all browsers. + * 2. Prevent adjustments of font size after orientation changes in iOS. + */ + +html { + line-height: 1.15; /* 1 */ + -webkit-text-size-adjust: 100%; /* 2 */ +} + +/* Sections + ========================================================================== */ + +/** + * Remove the margin in all browsers. + */ + +body { + margin: 0; +} + +/** + * Render the `main` element consistently in IE. + */ + +main { + display: block; +} + +/** + * Correct the font size and margin on `h1` elements within `section` and + * `article` contexts in Chrome, Firefox, and Safari. + */ + +h1 { + font-size: 2em; + margin: 0.67em 0; +} + +/* Grouping content + ========================================================================== */ + +/** + * 1. Add the correct box sizing in Firefox. + * 2. Show the overflow in Edge and IE. + */ + +hr { + box-sizing: content-box; /* 1 */ + height: 0; /* 1 */ + overflow: visible; /* 2 */ +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +pre { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/* Text-level semantics + ========================================================================== */ + +/** + * Remove the gray background on active links in IE 10. + */ + +a { + background-color: transparent; +} + +/** + * 1. Remove the bottom border in Chrome 57- + * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari. + */ + +abbr[title] { + border-bottom: none; /* 1 */ + text-decoration: underline; /* 2 */ + text-decoration: underline dotted; /* 2 */ +} + +/** + * Add the correct font weight in Chrome, Edge, and Safari. + */ + +b, +strong { + font-weight: bolder; +} + +/** + * 1. Correct the inheritance and scaling of font size in all browsers. + * 2. Correct the odd `em` font sizing in all browsers. + */ + +code, +kbd, +samp { + font-family: monospace, monospace; /* 1 */ + font-size: 1em; /* 2 */ +} + +/** + * Add the correct font size in all browsers. + */ + +small { + font-size: 80%; +} + +/** + * Prevent `sub` and `sup` elements from affecting the line height in + * all browsers. + */ + +sub, +sup { + font-size: 75%; + line-height: 0; + position: relative; + vertical-align: baseline; +} + +sub { + bottom: -0.25em; +} + +sup { + top: -0.5em; +} + +/* Embedded content + ========================================================================== */ + +/** + * Remove the border on images inside links in IE 10. + */ + +img { + border-style: none; +} + +/* Forms + ========================================================================== */ + +/** + * 1. Change the font styles in all browsers. + * 2. Remove the margin in Firefox and Safari. + */ + +button, +input, +optgroup, +select, +textarea { + font-family: inherit; /* 1 */ + font-size: 100%; /* 1 */ + line-height: 1.15; /* 1 */ + margin: 0; /* 2 */ +} + +/** + * Show the overflow in IE. + * 1. Show the overflow in Edge. + */ + +button, +input { /* 1 */ + overflow: visible; +} + +/** + * Remove the inheritance of text transform in Edge, Firefox, and IE. + * 1. Remove the inheritance of text transform in Firefox. + */ + +button, +select { /* 1 */ + text-transform: none; +} + +/** + * Correct the inability to style clickable types in iOS and Safari. + */ + +button, +[type="button"], +[type="reset"], +[type="submit"] { + -webkit-appearance: button; +} + +/** + * Remove the inner border and padding in Firefox. + */ + +button::-moz-focus-inner, +[type="button"]::-moz-focus-inner, +[type="reset"]::-moz-focus-inner, +[type="submit"]::-moz-focus-inner { + border-style: none; + padding: 0; +} + +/** + * Restore the focus styles unset by the previous rule. + */ + +button:-moz-focusring, +[type="button"]:-moz-focusring, +[type="reset"]:-moz-focusring, +[type="submit"]:-moz-focusring { + outline: 1px dotted ButtonText; +} + +/** + * Correct the padding in Firefox. + */ + +fieldset { + padding: 0.35em 0.75em 0.625em; +} + +/** + * 1. Correct the text wrapping in Edge and IE. + * 2. Correct the color inheritance from `fieldset` elements in IE. + * 3. Remove the padding so developers are not caught out when they zero out + * `fieldset` elements in all browsers. + */ + +legend { + box-sizing: border-box; /* 1 */ + color: inherit; /* 2 */ + display: table; /* 1 */ + max-width: 100%; /* 1 */ + padding: 0; /* 3 */ + white-space: normal; /* 1 */ +} + +/** + * Add the correct vertical alignment in Chrome, Firefox, and Opera. + */ + +progress { + vertical-align: baseline; +} + +/** + * Remove the default vertical scrollbar in IE 10+. + */ + +textarea { + overflow: auto; +} + +/** + * 1. Add the correct box sizing in IE 10. + * 2. Remove the padding in IE 10. + */ + +[type="checkbox"], +[type="radio"] { + box-sizing: border-box; /* 1 */ + padding: 0; /* 2 */ +} + +/** + * Correct the cursor style of increment and decrement buttons in Chrome. + */ + +[type="number"]::-webkit-inner-spin-button, +[type="number"]::-webkit-outer-spin-button { + height: auto; +} + +/** + * 1. Correct the odd appearance in Chrome and Safari. + * 2. Correct the outline style in Safari. + */ + +[type="search"] { + -webkit-appearance: textfield; /* 1 */ + outline-offset: -2px; /* 2 */ +} + +/** + * Remove the inner padding in Chrome and Safari on macOS. + */ + +[type="search"]::-webkit-search-decoration { + -webkit-appearance: none; +} + +/** + * 1. Correct the inability to style clickable types in iOS and Safari. + * 2. Change font properties to `inherit` in Safari. + */ + +::-webkit-file-upload-button { + -webkit-appearance: button; /* 1 */ + font: inherit; /* 2 */ +} + +/* Interactive + ========================================================================== */ + +/* + * Add the correct display in Edge, IE 10+, and Firefox. + */ + +details { + display: block; +} + +/* + * Add the correct display in all browsers. + */ + +summary { + display: list-item; +} + +/* Misc + ========================================================================== */ + +/** + * Add the correct display in IE 10+. + */ + +template { + display: none; +} + +/** + * Add the correct display in IE 10. + */ + +[hidden] { + display: none; +}