diff --git a/100-days/full-week.html b/100-days/full-week.html index 48654b4..5e24e49 100644 --- a/100-days/full-week.html +++ b/100-days/full-week.html @@ -8,14 +8,16 @@ href="https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;700&family=Oswald:wght@700&display=swap" rel="stylesheet" /> - - + +

My Upcoming Challenges

View Today's Challenge -

Repeat what I learned about HTML & CSS

-

Do the exercises on HTML & CSS

-

Dive deeper into HTML & CSS and build more complex websites

+
    +
  1. Repeat what I learned about HTML & CSS
  2. +
  3. Do the exercises on HTML & CSS
  4. +
  5. Dive deeper into HTML & CSS and build more complex websites
  6. +
\ No newline at end of file diff --git a/100-days/index.html b/100-days/index.html index 07a718f..8477286 100644 --- a/100-days/index.html +++ b/100-days/index.html @@ -15,7 +15,7 @@ A trophy -

Max' Challenge for Wednesday, August 4th

+

100 Day Challenges

Learn about the basics of web development - specifically dive into HTML & CSS. diff --git a/100-days/styles/full-week.css b/100-days/styles/full-week.css index e69de29..2d93eaf 100644 --- a/100-days/styles/full-week.css +++ b/100-days/styles/full-week.css @@ -0,0 +1,25 @@ +h1 { + font-size: 48px; + color: rgb(71, 62, 62); +} + +a { + background-color: rgb(167, 1, 78); + color: white; + border-radius: 4px; + font-size: 24px; +} +a:hover { + background-color: rgb(180, 12, 90); + text-decoration: none; +} + +ol { + list-style: none; +} + +li { + margin: 32px; + background-color: rgb(223, 136, 124); + border-radius: 6px; +} \ No newline at end of file