commit e1c93f4ce36b2823e93c2202a9b57617ea1df7d6 Author: nin0dev Date: Fri May 10 17:31:20 2024 -0400 Initial commit diff --git a/index.html b/index.html new file mode 100644 index 0000000..a0a4e27 --- /dev/null +++ b/index.html @@ -0,0 +1,24 @@ + + + + + + HTML 5 Boilerplate + + + + +
+
+
Home
+
+
+ +
+
+ + + \ No newline at end of file diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..d84c2ab Binary files /dev/null and b/logo.png differ diff --git a/style.css b/style.css new file mode 100644 index 0000000..819de44 --- /dev/null +++ b/style.css @@ -0,0 +1,36 @@ +:root { + --online-color: #23a55a; + --idle-color: #f0b232; + --dnd-color: #f23f43; + --offline-color: #80848e; +} +body { + background-color: #003D3D; + padding: 30px; +} +#main-window { + max-width: 600px; +} +.window { + background-color: #202020 !important; + color: white; + box-shadow: inset -1px -1px #0a0a0a,inset 1px 1px #404040,inset -2px -2px grey,inset 2px 2px #202020 !important; +} +.window-body { + padding: 10px; +} +#header { + display: flex; +} +#header h3 { + font-size: xx-large; + font-weight: 400; + margin-left: 20px; +} +#pfp { + width: 90px; + border-radius: 3px; + border-color: var(--offline-color); + border-style: solid; + border-width: 2px; +} \ No newline at end of file