From 2396ac9cbd57f8fe9bca5e0446a459bf13929679 Mon Sep 17 00:00:00 2001 From: waifu Date: Sat, 1 Jun 2024 19:16:12 -0300 Subject: [PATCH] library --- home/library/index.html | 44 +++++++++++++++++++++++++++++++++--- home/library/styles.css | 49 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+), 3 deletions(-) create mode 100644 home/library/styles.css diff --git a/home/library/index.html b/home/library/index.html index 447afb5..751abff 100644 --- a/home/library/index.html +++ b/home/library/index.html @@ -3,9 +3,47 @@ - library + Library | waifuism.life + + - Test +
+ +
+ +
+
+ + - \ No newline at end of file + diff --git a/home/library/styles.css b/home/library/styles.css new file mode 100644 index 0000000..63c9972 --- /dev/null +++ b/home/library/styles.css @@ -0,0 +1,49 @@ + +body { + display: flex; + justify-content: center; + align-items: center; + height: 100vh; + margin: 0; + background-color: #f0f0f0; +} +.window { + display: flex; + width: 60%; + height: 60%; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + background-color: white; + border-radius: 8px; +} +.nav { + width: 25%; + background-color: #50372c; + color: white; + display: flex; + flex-direction: column; + align-items: center; + padding: 20px; + border-top-left-radius: 8px; + border-bottom-left-radius: 8px; +} +.nav button { + width: 100%; + margin: 10px 0; + padding: 10px; + border: none; + border-radius: 4px; + background-color: #7e5b53; + color: white; + cursor: pointer; + transition: background-color 0.3s; +} +.nav button:hover { + background-color: #1abc9c; +} +.content { + width: 75%; + padding: 20px; + border-top-right-radius: 8px; + border-bottom-right-radius: 8px; + overflow-y: auto; +} \ No newline at end of file