From 4f95724e6124e61a81b788e7342ba9c12c0378ad Mon Sep 17 00:00:00 2001 From: misomosi Date: Thu, 23 Apr 2026 21:08:18 -0400 Subject: [PATCH] Style links better, add color pseudo-class efects --- index.html | 4 ++-- styles.css | 16 ++++++++++++++++ 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 62b5a5b..5ea0c2e 100644 --- a/index.html +++ b/index.html @@ -1,8 +1,8 @@ -Welcome to nginx! - +Misomosispi's Home Page + diff --git a/styles.css b/styles.css index 3c31e11..8ac282c 100644 --- a/styles.css +++ b/styles.css @@ -32,4 +32,20 @@ body { width: 400px; height: 100px; padding: 20px; + border-radius: 15px; } +.lib-list > li > a:link > button { + background-color: blue; +} +.lib-list > li > a:visited > button { + background-color: purple; +} +.lib-list > li > a:hover > button { + background-color: green; +} +.lib-list > li > a > button > h3 { + margin-top: 0px; +} +.lib-list > li > a > button > p { + margin-bottom: 0px; +} \ No newline at end of file -- 2.49.1