diff --git a/content/about.html b/content/about.html new file mode 100644 index 000000000..c2bcbe91b --- /dev/null +++ b/content/about.html @@ -0,0 +1,30 @@ + + + + + Iris Lux - Junior Developer + + + + + +
+ head-on shot of Iris wearing a red dress +
+

About Me

+

+ Junior developer and writer. Currently a student at Ada Developer Academy. I know how to code in Ruby, CSS and HTML. My interests include natural language processing and digital privacy. +

+
+
+ + + \ No newline at end of file diff --git a/content/code-journal.html b/content/code-journal.html new file mode 100644 index 000000000..4751920c2 --- /dev/null +++ b/content/code-journal.html @@ -0,0 +1,58 @@ + + + + + Iris Lux - Junior Developer + + + + +
+

Code Journal

+ +
+ + + \ No newline at end of file diff --git a/content/index.html b/content/index.html new file mode 100644 index 000000000..ef308be9e --- /dev/null +++ b/content/index.html @@ -0,0 +1,25 @@ + + + + + Iris Lux - Junior Developer + + + + +
+

Iris Lux - Junior Developer

+ +
+
+

Iris Lux

+

Junior developer and writer. Currently a student at Ada Developer's Academy

+
+ + + \ No newline at end of file diff --git a/content/portfolio.html b/content/portfolio.html new file mode 100644 index 000000000..fca84a917 --- /dev/null +++ b/content/portfolio.html @@ -0,0 +1,37 @@ + + + + + Iris Lux - Junior Developer + + + + +
+

Portfolio

+ +
+ + + \ No newline at end of file diff --git a/images/iris-lux.jpg b/images/iris-lux.jpg new file mode 100644 index 000000000..99aabe96c Binary files /dev/null and b/images/iris-lux.jpg differ diff --git a/stylesheets/about.css b/stylesheets/about.css new file mode 100644 index 000000000..78d22c427 --- /dev/null +++ b/stylesheets/about.css @@ -0,0 +1,3 @@ +main{ + flex-direction: row; +} \ No newline at end of file diff --git a/stylesheets/style.css b/stylesheets/style.css new file mode 100644 index 000000000..ef62a1df2 --- /dev/null +++ b/stylesheets/style.css @@ -0,0 +1,96 @@ +body { + font-family: Gotham, helvetica, sans-serif; + color: #404040; + width: 100%; + line-height: 150%; + align-items: stretch; + display: flex; + flex-direction: column; + min-height: 100vh; +} + +header{ + position: fixed; + background-color: red; + width: 100%; +} + +h1{ + text-align: center; + font-size: 20px; + margin-top: 1em; + margin-bottom: 0; +} + +h2 { + margin-top: 1em; + font-size: 50px; + margin-bottom: 1em; +} + +nav{ + background-image: linear-gradient(red, magenta); + display: flex; + justify-content: center; + flex-direction: row; + align-items: center; + width: 100%; + margin: 0; +} + +.nav-link { + padding: 0 15px 0 0; + margin: 10px; +} + +a { + color: #fff; + text-decoration: none; +} + +a:hover { + color: black; +} + + +footer { + margin-top: 1em; + font-size: 10px +} + +main{ + padding: 0 15px 0 0; + margin-top: 100px; + color: #fff; + background-color: mediumpurple; + display: flex; + justify-content: center; + flex-direction: column; + text-align: center; +} + +.items { + display: flex; + flex-direction: column; + flex-wrap: wrap; + justify-content: space-between; + align-content: center; + list-style: none; +} + +.items li { + background-color: grey; + width: 40%; + margin: 4px; + border-style: solid; +} + +.items li p{ + width:98%; + text-align: left; + margin: 4px 4px 1em; +} + +.large-text { + font-size: 25px; +} \ No newline at end of file