Spaces:
Running
Running
Added style.css to fix layout and design
#228
by
marcuslich01
- opened
style.css
ADDED
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
body {
|
2 |
+
background-color: #121212;
|
3 |
+
color: white;
|
4 |
+
font-family: Arial, sans-serif;
|
5 |
+
margin: 0;
|
6 |
+
padding: 20px;
|
7 |
+
}
|
8 |
+
|
9 |
+
.card {
|
10 |
+
background-color: #1e1e1e;
|
11 |
+
padding: 30px;
|
12 |
+
border-radius: 10px;
|
13 |
+
box-shadow: 0 0 10px rgba(0,0,0,0.3);
|
14 |
+
}
|
15 |
+
|
16 |
+
a {
|
17 |
+
color: #00bfff;
|
18 |
+
text-decoration: none;
|
19 |
+
}
|
20 |
+
|
21 |
+
a:hover {
|
22 |
+
text-decoration: underline;
|
23 |
+
}
|