diff --git a/iron-comments/index.html b/iron-comments/index.html
index 415101d..9bb348a 100644
--- a/iron-comments/index.html
+++ b/iron-comments/index.html
@@ -1,19 +1,39 @@
+
-
+
Iron Comments
-
+
+
+
+
+
+
\ No newline at end of file
diff --git a/iron-comments/styles/style.css b/iron-comments/styles/style.css
index 1a9004d..b3bd1c6 100644
--- a/iron-comments/styles/style.css
+++ b/iron-comments/styles/style.css
@@ -1,11 +1,52 @@
+@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed:700|Roboto:100,300,700');
+
body {
padding: 0;
margin: 0;
padding-top: 100px;
- width: 100vw;
+ width: 100vw;
+
+ font-family: 'Roboto Condensed', sans-serif;
+ font-size: 1em;
+ line-height: 3.5em;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
}
+h1 {
+ font-family: 'Roboto Condensed', sans-serif;
+ }
+
+:root {
+ --color-blue: rgb(67, 163, 230);
+ --color-dark-blue: rgb(25, 33, 41);
+ --color-text: rgb(0, 0, 0);
+ --color-blank: #f5f5f5;
+ }
+
#form-container {
+ padding: 20px;
margin: auto;
+ display: flex;
+ flex-direction: column;
+ width: 250px;
+ background-color: var(--color-dark-blue);
+ color: var(--color-blank);
}
+
+button{
+ background-color: var(--color-blue);
+ color: var(--color-blank);
+ border-radius: 10px;
+ width: 30%;
+ padding: 5px 5px;
+ border: none;
+ align-self: flex-start;
+}
+
+.updates{
+
+}
\ No newline at end of file