Advertisement
horozov86

profile_details.css

May 14th, 2025
621
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.63 KB | None | 0 0
  1. html, body {
  2.     height: 100%;
  3.     margin: 0;
  4.     padding: 0;
  5.     font-family: sans-serif;
  6.     background: linear-gradient(#141e30, #243b55);
  7.     color: #fff;
  8. }
  9.  
  10. /* Основен контейнер */
  11. .info-section {
  12.     position: absolute;
  13.     top: 50%;
  14.     left: 50%;
  15.     width: 400px;
  16.     padding: 40px;
  17.     transform: translate(-50%, -50%);
  18.     background: rgba(0, 0, 0, 0.5);
  19.     box-sizing: border-box;
  20.     box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  21.     border-radius: 10px;
  22. }
  23.  
  24. /* Заглавие */
  25. .info-section h1 {
  26.     margin-bottom: 30px;
  27.     text-align: center;
  28.     font-size: 28px;
  29.     color: #f4ec03;
  30. }
  31.  
  32. /* Снимка на профила */
  33. .profile-photo {
  34.     text-align: center;
  35.     margin-bottom: 20px;
  36. }
  37.  
  38. .profile-photo img {
  39.     width: 120px;
  40.     height: 120px;
  41.     border-radius: 50%;
  42.     border: 3px solid #f4ec03;
  43.     object-fit: cover;
  44. }
  45.  
  46. /* Описание */
  47. .description {
  48.     font-size: 16px;
  49.     margin-bottom: 10px;
  50.     padding-left: 5px;
  51.     border-left: 3px solid #f4ec03;
  52. }
  53.  
  54. /* Бутони */
  55. .buttons {
  56.     margin-top: 30px;
  57.     text-align: center;
  58.     display: flex;
  59.     justify-content: space-between;
  60. }
  61.  
  62. .edit-button,
  63. .delete-button {
  64.     padding: 10px 20px;
  65.     color: #f4ec03;
  66.     font-size: 14px;
  67.     text-decoration: none;
  68.     text-transform: uppercase;
  69.     border: 1px solid #f4ec03;
  70.     border-radius: 5px;
  71.     background: transparent;
  72.     transition: all 0.3s ease;
  73.     width: 45%;
  74.     text-align: center;
  75. }
  76.  
  77. .edit-button:hover,
  78. .delete-button:hover {
  79.     background-color: #f4ec03;
  80.     color: #141e30;
  81.     box-shadow: 0 0 10px #f4ec03;
  82. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement