diff --git a/week-1/1-parent-child/index.html b/week-1/1-parent-child/index.html
index 458a4cb21..c24c041af 100644
--- a/week-1/1-parent-child/index.html
+++ b/week-1/1-parent-child/index.html
@@ -20,13 +20,15 @@
Who is available to meet this week to work on our group project?
- 6:48pm
+ 6:45pm
Habiba
I can meet on Tuesday and Wednesday after 4.
+
+
7:15pm >
diff --git a/week-1/2-html-attributes/index.html b/week-1/2-html-attributes/index.html
index dc861fa4f..58b9017d4 100644
--- a/week-1/2-html-attributes/index.html
+++ b/week-1/2-html-attributes/index.html
@@ -23,14 +23,15 @@
Luke
- Let's meet at the iCafe in Merchant City. https://goo.gl/maps/aza4h9nUBhn
+ Let's meet at the iCafe in Merchant City.
+ https://goo.gl/maps/aza4h9nUBhn
7:35pm
Won
- Ok! https://media.giphy.com/media/l41K4KlVE8dgozf8I/giphy.gif
+
7:38pm
diff --git a/week-1/3-semantic-html/index.html b/week-1/3-semantic-html/index.html
index 3640deaff..91e6ee972 100644
--- a/week-1/3-semantic-html/index.html
+++ b/week-1/3-semantic-html/index.html
@@ -12,30 +12,30 @@
-
-
-
+
+
+
Won
Where should we meet later?
- Mar 25, 2018 7:25pm
-
-
+
Mar 25, 2018 7:25pm
+
+
Luke
Let's meet at the iCafe in Merchant City. https://goo.gl/maps/aza4h9nUBhn
- Mar 25, 2018 7:35pm
-
-
+
Mar 25, 2018 7:35pm
+
+
Won
Ok! https://media.giphy.com/media/l41K4KlVE8dgozf8I/giphy.gif
- Mar 25, 2018 7:38pm
-
-
+
Mar 25, 2018 7:38pm
+
+
diff --git a/week-1/4-links-scripts/index.html b/week-1/4-links-scripts/index.html
index 303c7fbd2..841913af6 100644
--- a/week-1/4-links-scripts/index.html
+++ b/week-1/4-links-scripts/index.html
@@ -4,6 +4,7 @@
4. Adding Links and Scripts - HTML, CSS and Git Exercises
+
@@ -30,6 +31,7 @@
No, I prefer the one on Sauchiehall Street. https://goo.gl/maps/wKDoARcHDp42
7:38pm
+
diff --git a/week-1/5-css-selectors/message-backgrounds.css b/week-1/5-css-selectors/message-backgrounds.css
index ffe483325..ab04c756b 100644
--- a/week-1/5-css-selectors/message-backgrounds.css
+++ b/week-1/5-css-selectors/message-backgrounds.css
@@ -1 +1,12 @@
/* Add your CSS code below */
+#first-message {
+ background-color: red;
+}
+
+article {
+ background-color: cadetblue;
+}
+
+.message--latest {
+ background-color: yellow;
+}
diff --git a/week-1/6-css-properties/index.html b/week-1/6-css-properties/index.html
index e8a198d8f..073c4e6c8 100644
--- a/week-1/6-css-properties/index.html
+++ b/week-1/6-css-properties/index.html
@@ -19,7 +19,7 @@
Won
- Where should we meet tomorrrow?
+ Where should we meet tomorrow?
Yesterday, 7:25pm
diff --git a/week-1/6-css-properties/styles.css b/week-1/6-css-properties/styles.css
index ffe483325..39c3aefd4 100644
--- a/week-1/6-css-properties/styles.css
+++ b/week-1/6-css-properties/styles.css
@@ -1 +1,20 @@
/* Add your CSS code below */
+a {
+ color: red;
+ font-weight: bold;
+ text-decoration: none;
+}
+
+.message__time {
+ font-size: 0.9rem;
+}
+
+.message.message--unread {
+ border-left: 5px solid blue;
+}
+.message.message--old {
+ opacity: 40%;
+}
+.message {
+ line-height: 1.9em;
+}
diff --git a/week-1/7-css-box/styles.css b/week-1/7-css-box/styles.css
index 013b94f1e..30526744b 100644
--- a/week-1/7-css-box/styles.css
+++ b/week-1/7-css-box/styles.css
@@ -1,6 +1,14 @@
/* Try different box model properties below */
+.country {
+ padding: 15px;
+}
+
.pages__page {
border: 1px solid #4491db;
border-radius: 4px;
background: #fff;
}
+
+* {
+ border: 1px solid rgb(255, 208, 0);
+}
diff --git a/week-1/8-advanced-selectors/styles.css b/week-1/8-advanced-selectors/styles.css
index d35c3c371..d03e42ec2 100644
--- a/week-1/8-advanced-selectors/styles.css
+++ b/week-1/8-advanced-selectors/styles.css
@@ -1 +1,16 @@
/* Try different box model properties below */
+.site-wrapper {
+ margin-bottom: 20px;
+}
+.site-header {
+ color: yellow;
+}
+
+.site-footer {
+ font-size: 12px;
+ text-align: center;
+}
+
+.last-child {
+ box-shadow: 4px 4px 0 #dba944;
+}
diff --git a/week-1/9-git-branch/styles.css b/week-1/9-git-branch/styles.css
index 0051cdbaf..89cc58c86 100644
--- a/week-1/9-git-branch/styles.css
+++ b/week-1/9-git-branch/styles.css
@@ -1,6 +1,6 @@
/* Add your own CSS code below */
.link {
- color: #4491db;
+ color: dark_orange;
font-weight: 700;
text-decoration: none;
}