Spaces:
Running
Running
eaglelandsonce
commited on
Commit
•
d9b4f7b
1
Parent(s):
59516f3
Update style.css
Browse files
style.css
CHANGED
@@ -54,19 +54,49 @@ body {
|
|
54 |
align-items: center;
|
55 |
justify-content: center;
|
56 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
57 |
.content {
|
58 |
flex: 1;
|
59 |
display: flex;
|
60 |
-
flex-direction: column;
|
61 |
justify-content: center;
|
62 |
align-items: center;
|
63 |
-
|
64 |
background-color: #000;
|
65 |
-
gap: 10px;
|
66 |
-
}
|
67 |
-
.content h1 {
|
68 |
-
font-size: 24px;
|
69 |
-
color: #fff;
|
70 |
}
|
71 |
.content img {
|
72 |
max-width: 100%;
|
|
|
54 |
align-items: center;
|
55 |
justify-content: center;
|
56 |
}
|
57 |
+
.top-bar {
|
58 |
+
position: absolute;
|
59 |
+
top: 0;
|
60 |
+
width: 100%;
|
61 |
+
background-color: #444;
|
62 |
+
color: white;
|
63 |
+
text-align: center;
|
64 |
+
padding: 10px;
|
65 |
+
z-index: 10;
|
66 |
+
display: flex;
|
67 |
+
align-items: center;
|
68 |
+
justify-content: space-between;
|
69 |
+
}
|
70 |
+
.top-bar h1 {
|
71 |
+
flex: 1;
|
72 |
+
text-align: center;
|
73 |
+
}
|
74 |
+
.nav-buttons {
|
75 |
+
display: flex;
|
76 |
+
gap: 10px;
|
77 |
+
}
|
78 |
+
.nav-buttons button {
|
79 |
+
background-color: #666;
|
80 |
+
color: white;
|
81 |
+
border: none;
|
82 |
+
padding: 10px;
|
83 |
+
font-size: 18px;
|
84 |
+
cursor: pointer;
|
85 |
+
}
|
86 |
+
.nav-buttons button:hover {
|
87 |
+
background-color: #888;
|
88 |
+
}
|
89 |
+
.main {
|
90 |
+
display: flex;
|
91 |
+
height: 100%;
|
92 |
+
}
|
93 |
.content {
|
94 |
flex: 1;
|
95 |
display: flex;
|
|
|
96 |
justify-content: center;
|
97 |
align-items: center;
|
98 |
+
position: relative;
|
99 |
background-color: #000;
|
|
|
|
|
|
|
|
|
|
|
100 |
}
|
101 |
.content img {
|
102 |
max-width: 100%;
|