Steelskull
commited on
Commit
•
97b462a
1
Parent(s):
f0bc4bc
Update README.md
Browse files
README.md
CHANGED
@@ -8,21 +8,22 @@ datasets:
|
|
8 |
---
|
9 |
<!DOCTYPE html>
|
10 |
<style>
|
11 |
-
body {
|
|
|
|
|
|
|
12 |
font-family: 'Quicksand', sans-serif;
|
13 |
background: linear-gradient(135deg, #2E3440 0%, #1A202C 100%);
|
14 |
color: #D8DEE9;
|
15 |
-
margin: 0;
|
16 |
-
padding: 0;
|
17 |
font-size: 16px;
|
18 |
}
|
19 |
|
20 |
.container {
|
21 |
-
width:
|
22 |
-
|
23 |
-
margin: 20px auto;
|
24 |
-
background-color: rgba(255, 255, 255, 0.02);
|
25 |
padding: 20px;
|
|
|
|
|
26 |
border-radius: 12px;
|
27 |
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
28 |
backdrop-filter: blur(10px);
|
@@ -31,7 +32,7 @@ body {
|
|
31 |
|
32 |
.header h1 {
|
33 |
font-size: 28px;
|
34 |
-
color: #
|
35 |
margin: 0 0 20px 0;
|
36 |
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
37 |
}
|
@@ -87,44 +88,6 @@ code {
|
|
87 |
font-family: 'Courier New', monospace;
|
88 |
color: #D8DEE9;
|
89 |
}
|
90 |
-
|
91 |
-
@media (prefers-color-scheme: light) {
|
92 |
-
body {
|
93 |
-
background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
|
94 |
-
color: #333;
|
95 |
-
}
|
96 |
-
|
97 |
-
.container {
|
98 |
-
background-color: rgba(0, 0, 0, 0.02);
|
99 |
-
border: 1px solid rgba(0, 0, 0, 0.1);
|
100 |
-
}
|
101 |
-
|
102 |
-
.header h1, .update-section p {
|
103 |
-
color: #333;
|
104 |
-
}
|
105 |
-
|
106 |
-
.update-section h2, a {
|
107 |
-
color: #0056b3;
|
108 |
-
}
|
109 |
-
|
110 |
-
a:hover {
|
111 |
-
color: #004494;
|
112 |
-
}
|
113 |
-
|
114 |
-
.button {
|
115 |
-
background-color: #007bff;
|
116 |
-
color: #ffffff;
|
117 |
-
}
|
118 |
-
|
119 |
-
.button:hover {
|
120 |
-
background-color: #0056b3;
|
121 |
-
}
|
122 |
-
|
123 |
-
pre, code {
|
124 |
-
background-color: #fff;
|
125 |
-
color: #333;
|
126 |
-
}
|
127 |
-
}
|
128 |
</style>
|
129 |
|
130 |
<html lang="en">
|
|
|
8 |
---
|
9 |
<!DOCTYPE html>
|
10 |
<style>
|
11 |
+
body, html {
|
12 |
+
height: 100%; /* Ensure the full height of the page is used */
|
13 |
+
margin: 0;
|
14 |
+
padding: 0;
|
15 |
font-family: 'Quicksand', sans-serif;
|
16 |
background: linear-gradient(135deg, #2E3440 0%, #1A202C 100%);
|
17 |
color: #D8DEE9;
|
|
|
|
|
18 |
font-size: 16px;
|
19 |
}
|
20 |
|
21 |
.container {
|
22 |
+
width: 100%; /* Full width */
|
23 |
+
height: 100%; /* Full height */
|
|
|
|
|
24 |
padding: 20px;
|
25 |
+
margin: 0; /* Remove margin to fill the entire area */
|
26 |
+
background-color: rgba(255, 255, 255, 0.02);
|
27 |
border-radius: 12px;
|
28 |
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
|
29 |
backdrop-filter: blur(10px);
|
|
|
32 |
|
33 |
.header h1 {
|
34 |
font-size: 28px;
|
35 |
+
color: #5F9EA0;
|
36 |
margin: 0 0 20px 0;
|
37 |
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
|
38 |
}
|
|
|
88 |
font-family: 'Courier New', monospace;
|
89 |
color: #D8DEE9;
|
90 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
</style>
|
92 |
|
93 |
<html lang="en">
|