Advertisement
mishe

Customers-page-sap

May 3rd, 2025
324
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.15 KB | None | 0 0
  1. * {
  2.   margin: 0;
  3.   padding: 0;
  4.   box-sizing: border-box;
  5. }
  6.  
  7. body {
  8.   font-family: 'Segoe UI', sans-serif;
  9.   background: linear-gradient(to bottom right, #f5f5f5, #e0e0e0);
  10.   padding: 0;
  11.   display: flex;
  12.   flex-direction: column;
  13.   align-items: center;
  14. }
  15.  
  16. .welcome-title {
  17.   font-size: 2em;
  18.   color: #eae8e8;
  19.   text-align: left;
  20.   font-weight: bold;
  21.   margin-bottom: 20px;
  22.  
  23. }
  24.  
  25. .welcome-text {
  26.   font-size: 1em;
  27.   color: #eae8e8;
  28.   text-align: left;
  29.   font-weight: bold;
  30.   margin-bottom: 20px;
  31.  
  32. }
  33.  
  34. .main-header {
  35.   width: 100%;
  36.   display: flex;
  37.   background: #531c1c;
  38.   padding: 0px;
  39.   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  40.   flex-wrap: wrap;
  41.   border-radius: 15px;
  42.   overflow: hidden;
  43. }
  44.  
  45. .header-left {
  46.   margin: 0;
  47.   padding: 0;
  48.  
  49. }
  50.  
  51. .header-left img {
  52.   width: 450px;
  53.   height: auto;
  54.   object-fit: cover;
  55.   display: block;
  56.   margin: 0;
  57.  
  58. }
  59.  
  60.  
  61. .header-content {
  62.   display: flex;
  63.   flex-direction: column;
  64.   justify-content: center;
  65.   padding: 20px;
  66.   flex-grow: 1;
  67. }
  68.  
  69.  
  70. .header-nav {
  71.   display: flex;
  72.   gap: 15px;
  73.   flex-wrap: wrap;
  74.   justify-content: left;
  75.  
  76. }
  77.  
  78. .nav-button {
  79.   padding: 10px 20px;
  80.   border-radius: 20px;
  81.   background-color: #f0f0f0;
  82.   color: #333;
  83.   text-decoration: none;
  84.   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  85. }
  86.  
  87. .nav-button:hover {
  88.   background-color: #ddd;
  89. }
  90.  
  91. main {
  92.     max-width: 1200px;
  93.     width: 80%;
  94.     margin: 40px auto;
  95.     padding: 30px;
  96.     background-color: #ffffff;
  97.     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  98.     border-radius: 12px;
  99.   }
  100.  
  101.   table {
  102.     width: 100%;
  103.     border-collapse: collapse;
  104.     margin-top: 20px;
  105.   }
  106.  
  107.   th, td{
  108.     padding: 14px 18px;
  109.     text-align: center;
  110.     border-bottom: 1px solid #ddd;
  111.     font-size: 1rem;
  112.   }
  113.  
  114.  
  115.   th {
  116.     background-color: #f2f2f2;
  117.     color: #333;
  118.     font-weight: 600;
  119.   }
  120.  
  121.   .promote-btn {
  122.     padding: 8px 10px;
  123.     background-color: #531c1c;
  124.     color: white;
  125.     font-weight: bold;
  126.     border: none;
  127.     border-radius: 6px;
  128.     cursor: pointer;
  129.     transition: background-color 0.3s ease;
  130.   }
  131.  
  132.   .promote-btn:hover {
  133.     background-color: #EA6463;
  134.   }
  135.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement