Spaces:
Running
Running
Rename style.css to styles.css
Browse files- style.css → styles.css +30 -9
style.css → styles.css
RENAMED
@@ -1,6 +1,7 @@
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
-
background-color: #
|
|
|
4 |
margin: 0;
|
5 |
padding: 0;
|
6 |
}
|
@@ -9,13 +10,14 @@ body {
|
|
9 |
max-width: 800px;
|
10 |
margin: 50px auto;
|
11 |
padding: 20px;
|
12 |
-
background-color: #
|
13 |
-
box-shadow: 0 0 10px rgba(
|
|
|
14 |
}
|
15 |
|
16 |
-
h1 {
|
17 |
text-align: center;
|
18 |
-
color: #
|
19 |
}
|
20 |
|
21 |
form {
|
@@ -28,8 +30,10 @@ form {
|
|
28 |
input {
|
29 |
padding: 10px;
|
30 |
font-size: 16px;
|
31 |
-
border: 1px solid #
|
32 |
border-radius: 5px;
|
|
|
|
|
33 |
}
|
34 |
|
35 |
button {
|
@@ -55,15 +59,16 @@ table {
|
|
55 |
th, td {
|
56 |
padding: 12px;
|
57 |
text-align: left;
|
58 |
-
border-bottom: 1px solid #
|
59 |
}
|
60 |
|
61 |
th {
|
62 |
-
background-color: #
|
|
|
63 |
}
|
64 |
|
65 |
tr:hover {
|
66 |
-
background-color: #
|
67 |
}
|
68 |
|
69 |
.sell-btn {
|
@@ -77,4 +82,20 @@ tr:hover {
|
|
77 |
|
78 |
.sell-btn:hover {
|
79 |
background-color: #c82333;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
}
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #000;
|
4 |
+
color: #fff;
|
5 |
margin: 0;
|
6 |
padding: 0;
|
7 |
}
|
|
|
10 |
max-width: 800px;
|
11 |
margin: 50px auto;
|
12 |
padding: 20px;
|
13 |
+
background-color: #111;
|
14 |
+
box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
|
15 |
+
border-radius: 10px;
|
16 |
}
|
17 |
|
18 |
+
h1, h2 {
|
19 |
text-align: center;
|
20 |
+
color: #fff;
|
21 |
}
|
22 |
|
23 |
form {
|
|
|
30 |
input {
|
31 |
padding: 10px;
|
32 |
font-size: 16px;
|
33 |
+
border: 1px solid #444;
|
34 |
border-radius: 5px;
|
35 |
+
background-color: #222;
|
36 |
+
color: #fff;
|
37 |
}
|
38 |
|
39 |
button {
|
|
|
59 |
th, td {
|
60 |
padding: 12px;
|
61 |
text-align: left;
|
62 |
+
border-bottom: 1px solid #444;
|
63 |
}
|
64 |
|
65 |
th {
|
66 |
+
background-color: #333;
|
67 |
+
color: #fff;
|
68 |
}
|
69 |
|
70 |
tr:hover {
|
71 |
+
background-color: #222;
|
72 |
}
|
73 |
|
74 |
.sell-btn {
|
|
|
82 |
|
83 |
.sell-btn:hover {
|
84 |
background-color: #c82333;
|
85 |
+
}
|
86 |
+
|
87 |
+
.stats {
|
88 |
+
margin-top: 30px;
|
89 |
+
padding: 20px;
|
90 |
+
background-color: #222;
|
91 |
+
border-radius: 10px;
|
92 |
+
}
|
93 |
+
|
94 |
+
.stats h2 {
|
95 |
+
margin-top: 0;
|
96 |
+
}
|
97 |
+
|
98 |
+
.stats p {
|
99 |
+
font-size: 18px;
|
100 |
+
margin: 10px 0;
|
101 |
}
|