diff --git a/index.html b/index.html index d01f779ff..44edce052 100644 --- a/index.html +++ b/index.html @@ -1,11 +1,47 @@ - - - - Document - - - - - \ No newline at end of file + + + + + Document + + + + +
+

Timothy Hall

+ +
+

Welcome to Tim's Site!!

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

I always try to push myself to my limits,even just beginning. Come see what I have learned so fat!!!

+
+ + + + \ No newline at end of file diff --git a/style/index.css b/style/index.css index 440e53514..211e16d82 100644 --- a/style/index.css +++ b/style/index.css @@ -1 +1,190 @@ -/* Add CSS styling here */ \ No newline at end of file +/* Add CSS styling here */ +/* 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; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} +html { + font-size: 62.5; +} +* { + background: #6b5b95; +} + @media(max-width: 500px){ + * { + background: black; + } +} + +h1 { + font-size: 6.5rem; + text-align: center; + font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; + background: green; + color: goldenrod; + height: 30vh; + display: flex; + justify-content: center; + align-items: center; +} +@media(max-width: 800px){ + h1 { + background: red; + color: white; + } + } +.nav-con { + display: flex; + flex-direction: row; + justify-content: space-around; +} + +a { + background: black; + font-size: 2rem; + border: 4px solid darkred; + color: yellowgreen; + text-decoration: none; +} +h2 { + font-size: 4rem; + text-align: center; + color: White; + padding: 0 0 5% 0; +} + div { + display: flex; + justify-content: center; + align-content: center; + } + .pic { + background: darkred; + } + #first { + border: 5px solid black; + height: 60vh; + width: 120vh; + margin: 10vh; + } +.second { + height: 20vh; + width: 20vh; + border: 6px solid black; +} +p { + width: 40vh; + background: greenyellow; + font-size: 1.5em; + border: 1px solid black; +} + +section{ + display: flex; + justify-content: space-around; + align-items: center; + border: 1px solid black; + background: orange; +} + +address { + display: flex; + justify-content: space-between; + background: orangered; + font-size: 1rem; + color: darkolivegreen; +} + +h3 { + background: orangered; + font-size: 5rem; + text-align: center; +} +.button-1 { + height: 12vh; + width: 10vw; + background: green; + cursor: pointer; +} +.button-2 { + color:black; + background: dodgerblue; + Height: 12vh; + width: 5vw; + cursor: pointer; +} +@media(max-width: 500px){ + address { + flex-wrap: wrap; + flex-direction: column; + } + @media(max-width: 800px){ + section { + flex-wrap: wrap; + } + } +} +@media(max-width: 800px){ + .nav-con { + flex-direction: column; + align-items: center; + } +} +@media(max-width: 500px){ +.nav-con { + background: cadetblue; +} +} +@media(max-width: 500px){ +.link { + background:darkviolet; + color: black; +} +} +@media(max-width: 800px){ + section { + flex-wrap: wrap; + } +} \ No newline at end of file