diff --git a/index.html b/index.html new file mode 100644 index 0000000..980b9f4 --- /dev/null +++ b/index.html @@ -0,0 +1,48 @@ + + + + + + + + My Notes Application + + + + +
+
+

Create a New Note

+ + + + + + + +
+ +
+

Resources

+ +
+
+ + + + +//empty + + + + diff --git a/sanitize.css b/sanitize.css new file mode 100644 index 0000000..a76c5af --- /dev/null +++ b/sanitize.css @@ -0,0 +1,5 @@ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..37b0fd2 --- /dev/null +++ b/style.css @@ -0,0 +1,151 @@ +body { + margin: 0; + font-family: Arial, sans-serif; + background-color: #f0f4f8; +} + +header.banner { + background-color: #4a90e2; + color: white; + padding: 20px; + text-align: center; +} + +header.banner h2 { + margin: 0; + font-size: 2rem; +} + +section.container { + display: flex; + justify-content: space-between; + padding: 20px; + max-width: 100%; + margin: 0 auto; + gap: 20px; + align-items: flex-start; +} + +article.block { + background-color: #ffffff; + width: 45%; + padding: 20px; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); + margin-top: 20px; +} + +article.note-block { + width: 60%; + text-align: left; + padding: 15px; +} + +article.note-block h3 { + text-align: left; + margin-bottom: 20px; + font-size: 1.2rem; +} + +article.resource-block { + width: 35%; + background-color: #f7f9fc; +} + +article.block h2 { + margin-bottom: 10px; + font-size: 1.5rem; +} + +article.block h3 { + font-size: 1.2rem; + margin-bottom: 10px; +} + +article.block input { + width: 100%; + padding: 10px; + margin: 10px 0; + border: 1px solid #d3d3d3; + border-radius: 5px; + box-sizing: border-box; + font-size: 0.9rem; +} + +article.block textarea { + width: 100%; + padding: 10px; + margin: 10px 0; + border: 1px solid #d3d3d3; + border-radius: 5px; + box-sizing: border-box; + font-size: 0.9rem; + min-height: 150px; +} + +article.block button { + background-color: #ff5723; + color: white; + padding: 10px; + border: none; + width: 100%; + border-radius: 5px; + font-size: 1rem; + cursor: pointer; + margin-top: 10px; +} + +article.block button:hover { + background-color: #e64a19; +} + +article.block button:focus { + outline: 2px solid #ccc; +} + +ul.resources-list { + list-style-type: none; + padding: 0; + margin: 0; +} + +ul.resources-list li { + margin-bottom: 10px; +} + +ul.resources-list a { + text-decoration: none; + color: #794da4; + font-size: 1rem; +} + +ul.resources-list a:hover { + text-decoration: underline; +} + +footer.underbanner { + background-color: #4a90e2; + color: white; + padding: 10px; + text-align: center; + position: fixed; + width: 100%; + bottom: 0; +} + +footer.underbanner p { + margin: 0; + font-size: 0.9rem; +} + + + + + + + + + + + + +