Bozman2024

admin.css

Jun 29th, 2025
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.39 KB | None | 0 0
  1. body {
  2.   background: linear-gradient(135deg, #1f1c2c, #928dab);
  3.  min-height: 100vh;
  4.   margin: 0;
  5.   font-family: "Segoe UI", sans-serif;
  6.   display: flex;
  7.   align-items: center;
  8.   justify-content: center;
  9. }
  10.  
  11. .admin-dashboard {
  12.   padding: 2rem;
  13.   max-width: 800px;
  14.   width: 100%;
  15.   color: white;
  16.   text-align: center;
  17. }
  18.  
  19. .subtitle {
  20.   font-size: 1.2rem;
  21.   margin-bottom: 1rem;
  22.   color: #bbb;
  23. }
  24.  
  25. .dashboard-grid {
  26.   display: flex;
  27.   gap: 1.5rem;
  28.   flex-wrap: wrap;
  29.   justify-content: center;
  30. }
  31.  
  32. .dash-card {
  33.   flex: 1 1 250px;
  34.   background: #1e1e2f;
  35.  padding: 1.5rem;
  36.   border-radius: 10px;
  37.   box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  38.   transition: transform 0.2s ease, box-shadow 0.2s ease;
  39.   text-align: center;
  40. }
  41.  
  42. .dash-card:hover {
  43.   transform: translateY(-5px);
  44.   box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
  45. }
  46.  
  47. .dash-card h3 {
  48.   margin-bottom: 0.5rem;
  49. }
  50.  
  51. .card-btn {
  52.   display: inline-block;
  53.   margin-top: 1rem;
  54.   padding: 8px 20px;
  55.   background: #00b4d8;
  56.  color: white;
  57.   border-radius: 5px;
  58.   text-decoration: none;
  59.   font-weight: bold;
  60.   box-shadow: 0 4px 10px rgba(0, 180, 216, 0.5);
  61.   transition: background 0.3s ease;
  62. }
  63.  
  64. .card-btn:hover {
  65.   background: #0096c7;
  66. }
  67.  
  68. .logout-link {
  69.   display: inline-block;
  70.   margin-top: 2rem;
  71.   color: #ff4b5c;
  72.  font-weight: bold;
  73.   text-decoration: none;
  74.   font-size: 1.1rem;
  75.   text-align: center;
  76. }
  77.  
Add Comment
Please, Sign In to add comment