Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- body {
- background: linear-gradient(135deg, #1f1c2c, #928dab);
- min-height: 100vh;
- margin: 0;
- font-family: "Segoe UI", sans-serif;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .admin-dashboard {
- padding: 2rem;
- max-width: 800px;
- width: 100%;
- color: white;
- text-align: center;
- }
- .subtitle {
- font-size: 1.2rem;
- margin-bottom: 1rem;
- color: #bbb;
- }
- .dashboard-grid {
- display: flex;
- gap: 1.5rem;
- flex-wrap: wrap;
- justify-content: center;
- }
- .dash-card {
- flex: 1 1 250px;
- background: #1e1e2f;
- padding: 1.5rem;
- border-radius: 10px;
- box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
- transition: transform 0.2s ease, box-shadow 0.2s ease;
- text-align: center;
- }
- .dash-card:hover {
- transform: translateY(-5px);
- box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
- }
- .dash-card h3 {
- margin-bottom: 0.5rem;
- }
- .card-btn {
- display: inline-block;
- margin-top: 1rem;
- padding: 8px 20px;
- background: #00b4d8;
- color: white;
- border-radius: 5px;
- text-decoration: none;
- font-weight: bold;
- box-shadow: 0 4px 10px rgba(0, 180, 216, 0.5);
- transition: background 0.3s ease;
- }
- .card-btn:hover {
- background: #0096c7;
- }
- .logout-link {
- display: inline-block;
- margin-top: 2rem;
- color: #ff4b5c;
- font-weight: bold;
- text-decoration: none;
- font-size: 1.1rem;
- text-align: center;
- }
Add Comment
Please, Sign In to add comment