aboutsummaryrefslogtreecommitdiff
path: root/style.css
diff options
context:
space:
mode:
author9mmilly <9mmilly@protonmail.com>2025-04-12 18:21:08 +0200
committer9mmilly <9mmilly@protonmail.com>2025-04-12 18:21:08 +0200
commit626f07c8cb8839c93f4f740c8b2fe9e23cd5751b (patch)
treef766ed3df15b761a866f44e2fac8dd829aa360ce /style.css
added current homepageHEADmaster
Diffstat (limited to 'style.css')
-rw-r--r--style.css91
1 files changed, 91 insertions, 0 deletions
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..28697c8
--- /dev/null
+++ b/style.css
@@ -0,0 +1,91 @@
+@font-face {
+ font-family: commitmono;
+ src: url('./fonts/CommitMono-400-Regular.ttf');
+}
+
+body {
+ background-image: url('img/bg.gif');
+ margin: 0;
+ height: 100vh;
+}
+
+* {
+ box-sizing: border-box;
+}
+
+p {
+ font-family: commitmono;
+ text-align: center;
+ color: white;
+}
+
+h1 {
+ font-family: commitmono;
+ color:#3d356a;
+ text-align: center;
+}
+
+img {
+ display: block;
+ margin: 0 auto;
+}
+
+#container {
+ max-width: 40%;
+ height: 100%;
+ margin: auto;
+}
+
+#main {
+ background-color: black;
+ height: 90%;
+ padding: 40px;
+}
+
+.buttons {
+ display:flex;
+ justify-content:center;
+}
+
+
+/* navigation section!! */
+#info {
+ height: 40px;
+ background-color: #3d356a;
+ /* navbar color */
+ width: 100%;
+}
+
+#info ul {
+ display: flex;
+ padding: 0;
+ margin: 0;
+ list-style-type: none;
+ justify-content: space-evenly;
+}
+
+#info li {
+ padding-top: 10px;
+}
+
+/* navigation links*/
+#info li a {
+ color: #FFFFFF;
+ /* navbar text color */
+ font-family: commitmono;
+ font-weight: 800;
+ text-decoration: none;
+ /* this removes the underline */
+}
+
+
+footer {
+ background-color: #000000;
+ color: #000000;
+ /* background color for footer */
+ width: 100%;
+ height: 100%;
+ padding: 10px;
+ text-align: center;
+ /* this centers the footer text */
+}