parent
2bc46325a5
commit
c362efd13a
4 changed files with 146 additions and 16 deletions
@ -1,30 +1,64 @@ |
|||||||
|
/* Nền Gradient Đẹp & Hài Hòa */ |
||||||
body { |
body { |
||||||
background: linear-gradient(135deg, #66d0ea, #764ba2); /* Gradient Background */ |
background: linear-gradient(135deg, #1E2A38, #4C6EF5); /* Xanh đậm sang xanh dương */ |
||||||
min-height: 100vh; |
min-height: 100vh; |
||||||
display: flex; |
display: flex; |
||||||
align-items: center; |
flex-direction: column; |
||||||
justify-content: center; |
justify-content: center; |
||||||
|
align-items: center; |
||||||
color: white; |
color: white; |
||||||
} |
} |
||||||
|
|
||||||
|
/* Tăng độ mờ của container */ |
||||||
.container { |
.container { |
||||||
background: rgba(255, 255, 255, 0.15); /* Transparent background */ |
background: rgba(255, 255, 255, 0.1); /* Màu trắng nhẹ */ |
||||||
backdrop-filter: blur(10px); /* Glass effect */ |
backdrop-filter: blur(15px); /* Hiệu ứng kính mờ */ |
||||||
border-radius: 12px; |
border-radius: 12px; |
||||||
padding: 20px; |
padding: 20px; |
||||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); |
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4); |
||||||
} |
max-width: 95%; |
||||||
h1 { |
|
||||||
font-weight: bold; |
|
||||||
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); |
|
||||||
} |
} |
||||||
|
|
||||||
|
/* Bảng hiển thị đẹp hơn với chữ màu đen */ |
||||||
table { |
table { |
||||||
background: rgba(255, 255, 255, 0.9); |
background: rgba(255, 255, 255, 0.9); /* Nền trắng rõ ràng */ |
||||||
border-radius: 8px; |
border-radius: 8px; |
||||||
overflow: hidden; |
overflow: hidden; |
||||||
|
color: #000; /* Đặt màu chữ đen */ |
||||||
|
} |
||||||
|
|
||||||
|
th { |
||||||
|
background: rgba(0, 0, 0, 0.8); /* Header màu đen đậm */ |
||||||
|
color: #ffffff; /* Chữ trắng để nổi bật trên nền đen */ |
||||||
} |
} |
||||||
|
|
||||||
|
td { |
||||||
|
color: #000; /* Màu chữ đen */ |
||||||
|
} |
||||||
|
|
||||||
|
/* Khi hover vào hàng trong bảng */ |
||||||
|
tbody tr:hover { |
||||||
|
background: rgba(0, 0, 0, 0.1); /* Nhấn mạnh dòng khi rê chuột */ |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
/* Tăng độ nổi bật khi hover */ |
||||||
.run-btn { |
.run-btn { |
||||||
transition: all 0.3s ease-in-out; |
transition: all 0.3s ease-in-out; |
||||||
} |
} |
||||||
|
|
||||||
.run-btn:hover { |
.run-btn:hover { |
||||||
transform: scale(1.1); |
transform: scale(1.1); |
||||||
} |
} |
||||||
|
|
||||||
|
/* Footer nổi bật & chuyên nghiệp */ |
||||||
|
footer { |
||||||
|
background: rgba(0, 0, 0, 0.85); |
||||||
|
padding: 20px 0; |
||||||
|
text-align: center; |
||||||
|
width: 100%; |
||||||
|
margin-top: auto; |
||||||
|
color: #ddd; |
||||||
|
font-size: 14px; |
||||||
|
box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3); |
||||||
|
} |
||||||
|
Loading…
Reference in new issue