Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
|
@@ -1,107 +1,130 @@
|
|
| 1 |
body {
|
| 2 |
font-family: 'Roboto', sans-serif;
|
| 3 |
-
background: linear-gradient(
|
| 4 |
-
color: #
|
| 5 |
min-height: 100vh;
|
| 6 |
display: flex;
|
| 7 |
flex-direction: column;
|
| 8 |
}
|
| 9 |
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
| 14 |
}
|
| 15 |
|
| 16 |
-
.hero {
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
|
|
|
| 20 |
}
|
| 21 |
|
| 22 |
-
.lead {
|
| 23 |
-
color: #
|
| 24 |
-
font-size: 1.
|
|
|
|
| 25 |
}
|
| 26 |
|
| 27 |
.card {
|
| 28 |
-
background
|
| 29 |
-
border:
|
| 30 |
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
|
|
|
| 31 |
}
|
| 32 |
|
| 33 |
.card:hover {
|
| 34 |
-
transform: translateY(-
|
| 35 |
-
box-shadow: 0
|
| 36 |
}
|
| 37 |
|
| 38 |
.form-select {
|
| 39 |
-
background
|
| 40 |
-
border
|
| 41 |
-
color: #
|
| 42 |
-
|
|
|
|
| 43 |
}
|
| 44 |
|
| 45 |
.form-select:focus {
|
| 46 |
-
background
|
| 47 |
-
border-color: #
|
| 48 |
-
box-shadow: 0 0 0 0.
|
| 49 |
}
|
| 50 |
|
| 51 |
.table-dark {
|
| 52 |
-
background
|
| 53 |
-
border
|
| 54 |
}
|
| 55 |
|
| 56 |
.table-dark th,
|
| 57 |
.table-dark td {
|
| 58 |
-
border-color: #
|
| 59 |
-
padding: 12px;
|
|
|
|
| 60 |
}
|
| 61 |
|
| 62 |
.table-dark tbody tr {
|
| 63 |
-
transition: background
|
| 64 |
}
|
| 65 |
|
| 66 |
.table-dark tbody tr:hover {
|
| 67 |
-
background
|
| 68 |
-
transform:
|
| 69 |
}
|
| 70 |
|
| 71 |
-
.pagination .page-link {
|
| 72 |
-
background
|
| 73 |
-
border
|
| 74 |
-
color: #
|
| 75 |
-
|
|
|
|
|
|
|
| 76 |
}
|
| 77 |
|
| 78 |
-
.pagination .page-link
|
| 79 |
-
background
|
| 80 |
-
color: #
|
|
|
|
| 81 |
}
|
| 82 |
|
| 83 |
-
.pagination .
|
| 84 |
-
background
|
| 85 |
-
|
| 86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 87 |
}
|
| 88 |
|
| 89 |
.container {
|
| 90 |
-
max-width:
|
| 91 |
flex: 1;
|
| 92 |
}
|
| 93 |
|
| 94 |
footer {
|
| 95 |
-
background
|
| 96 |
-
border-top:
|
| 97 |
-
color: #
|
|
|
|
| 98 |
}
|
| 99 |
|
| 100 |
.border-neon {
|
| 101 |
-
border-color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
}
|
| 103 |
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
to { opacity: 1; }
|
| 107 |
}
|
|
|
|
| 1 |
body {
|
| 2 |
font-family: 'Roboto', sans-serif;
|
| 3 |
+
background: linear-gradient(135deg, #1e1e1e 0%, #12122a 100%);
|
| 4 |
+
color: #d3d4e8;
|
| 5 |
min-height: 100vh;
|
| 6 |
display: flex;
|
| 7 |
flex-direction: column;
|
| 8 |
}
|
| 9 |
|
| 10 |
+
.hero {
|
| 11 |
+
background: linear-gradient(45deg, #2a2a3a, #1a1a2a);
|
| 12 |
+
border-bottom: 3px solid #00f6ff;
|
| 13 |
+
animation: slideIn 1.5s ease-out;
|
| 14 |
+
box-shadow: 0 4px 20px rgba(0, 246, 255, 0.3);
|
| 15 |
}
|
| 16 |
|
| 17 |
+
.hero h1 {
|
| 18 |
+
font-family: 'Orbitron', sans-serif;
|
| 19 |
+
color: #ffffff;
|
| 20 |
+
text-shadow: 0 0 8px rgba(0, 246, 255, 0.6);
|
| 21 |
+
letter-spacing: 2px;
|
| 22 |
}
|
| 23 |
|
| 24 |
+
.hero .lead {
|
| 25 |
+
color: #b0b0d0;
|
| 26 |
+
font-size: 1.3rem;
|
| 27 |
+
font-weight: 400;
|
| 28 |
}
|
| 29 |
|
| 30 |
.card {
|
| 31 |
+
background: #252535;
|
| 32 |
+
border: 2px solid #00f6ff;
|
| 33 |
transition: transform 0.3s ease, box-shadow 0.3s ease;
|
| 34 |
+
box-shadow: 0 4px 15px rgba(0, 246, 255, 0.2);
|
| 35 |
}
|
| 36 |
|
| 37 |
.card:hover {
|
| 38 |
+
transform: translateY(-8px);
|
| 39 |
+
box-shadow: 0 6px 20px rgba(0, 246, 255, 0.4);
|
| 40 |
}
|
| 41 |
|
| 42 |
.form-select {
|
| 43 |
+
background: #2f2f4f;
|
| 44 |
+
border: 1px solid #00f6ff;
|
| 45 |
+
color: #d3d4e8;
|
| 46 |
+
font-weight: 500;
|
| 47 |
+
transition: background 0.3s ease, box-shadow 0.3s ease;
|
| 48 |
}
|
| 49 |
|
| 50 |
.form-select:focus {
|
| 51 |
+
background: #2f2f4f;
|
| 52 |
+
border-color: #00f6ff;
|
| 53 |
+
box-shadow: 0 0 0 0.25rem rgba(0, 246, 255, 0.5);
|
| 54 |
}
|
| 55 |
|
| 56 |
.table-dark {
|
| 57 |
+
background: #252535;
|
| 58 |
+
border: 1px solid #00f6ff;
|
| 59 |
}
|
| 60 |
|
| 61 |
.table-dark th,
|
| 62 |
.table-dark td {
|
| 63 |
+
border-color: #3a3a5a;
|
| 64 |
+
padding: 12px 15px;
|
| 65 |
+
vertical-align: middle;
|
| 66 |
}
|
| 67 |
|
| 68 |
.table-dark tbody tr {
|
| 69 |
+
transition: background 0.3s ease, transform 0.2s ease;
|
| 70 |
}
|
| 71 |
|
| 72 |
.table-dark tbody tr:hover {
|
| 73 |
+
background: #3a3a5a;
|
| 74 |
+
transform: translateX(5px);
|
| 75 |
}
|
| 76 |
|
| 77 |
+
.pagination .page-item .page-link {
|
| 78 |
+
background: #2f2f4f;
|
| 79 |
+
border: 1px solid #00f6ff;
|
| 80 |
+
color: #d3d4e8;
|
| 81 |
+
font-weight: 500;
|
| 82 |
+
transition: background 0.3s ease, color 0.3s ease;
|
| 83 |
+
margin: 0 2px;
|
| 84 |
}
|
| 85 |
|
| 86 |
+
.pagination .page-item.active .page-link {
|
| 87 |
+
background: #00f6ff;
|
| 88 |
+
border-color: #00f6ff;
|
| 89 |
+
color: #1e1e2e;
|
| 90 |
}
|
| 91 |
|
| 92 |
+
.pagination .page-item .page-link:hover {
|
| 93 |
+
background: #00f6ff;
|
| 94 |
+
color: #1e1e2e;
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
.pagination .page-item.disabled .page-link {
|
| 98 |
+
background: #3a3a5a;
|
| 99 |
+
border-color: #3a3a5a;
|
| 100 |
+
color: #6a6a8a;
|
| 101 |
}
|
| 102 |
|
| 103 |
.container {
|
| 104 |
+
max-width: 1300px;
|
| 105 |
flex: 1;
|
| 106 |
}
|
| 107 |
|
| 108 |
footer {
|
| 109 |
+
background: #1a1a2a;
|
| 110 |
+
border-top: 2px solid #00f6ff;
|
| 111 |
+
color: #8a8aaa;
|
| 112 |
+
font-size: 0.9rem;
|
| 113 |
}
|
| 114 |
|
| 115 |
.border-neon {
|
| 116 |
+
border-color: #00f6ff !important;
|
| 117 |
+
}
|
| 118 |
+
|
| 119 |
+
.border-neon-dark {
|
| 120 |
+
border-color: #3a3a5a !important;
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
@keyframes slideIn {
|
| 124 |
+
from { opacity: 0; transform: translateY(-50px); }
|
| 125 |
+
to { opacity: 1; transform: translateY(0); }
|
| 126 |
}
|
| 127 |
|
| 128 |
+
.table-responsive {
|
| 129 |
+
box-shadow: 0 4px 15px rgba(0, 246, 255, 0.2);
|
|
|
|
| 130 |
}
|