commit 88e48a39dc593cfd1e284e66dc2566e14fa980cb Author: zepp Date: Mon Nov 4 19:24:35 2024 -0500 Inital layout complete, will add content next diff --git a/index.html b/index.html new file mode 100644 index 0000000..733d189 --- /dev/null +++ b/index.html @@ -0,0 +1,62 @@ + + + + + + rainydaydev + + + + +
+
+

rainyday.dev

+

A site showcasing the work and love of the web from emma

+
+
+ +

Skill based practical projects

+

Projects here are from sites like Frontend Mentor + and are practical and technical in nature, encouraging growth through completing challenging projects

+ + +
+
+ +

Course projects

+

Projects here are those completed from online courses like freeCodeCamp or The Odin Project

+ + +
+
+ +

Small web focused projects

+

This section is largely made up of personal projects for the small web. It may in the future contain projects + aimed at helping others who also take part in the small web +

+ + +
+ +
+ + \ No newline at end of file diff --git a/style/style.css b/style/style.css new file mode 100644 index 0000000..bfec3ea --- /dev/null +++ b/style/style.css @@ -0,0 +1,53 @@ +:root { + --grey: #eeeeee; +} + +*, ::before, ::after { + margin: 0; + padding: 0; +} + +html { + font-size: 16px; +} + +body { + height: 100vh; + width: auto; + box-sizing: border-box; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + background-color: var(--grey); +} + +h1 { + margin: 1rem; + font-size: 2rem; +} + +h2 { + margin: 1rem; + font-size: 1.5rem; +} + +section { + margin: 1rem; +} + +.section-header { + margin: 0.75rem; + margin-left: 0; + font-size: 1.25rem; +} + +.section-links { + margin: 0.75rem; + margin-left: 0; + font-size: 1.1rem; +} + +.links { + list-style-type: none; +} \ No newline at end of file