nicuf

chenar css

Nov 30th, 2023
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.87 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Counter Box Design</title>
  7. <style>
  8. body {
  9. margin: 0;
  10. height: 100vh;
  11. display: flex;
  12. justify-content: center;
  13. align-items: center;
  14. background-color: #e9ecef; /* sau orice altă culoare de fundal preferată */
  15. }
  16.  
  17. .counter-box {
  18. font-family: 'Arial', sans-serif;
  19. width: 150px; /* Ajustați lățimea după cum este necesar */
  20. height: 150px; /* Ajustați înălțimea după cum este necesar */
  21. background-color: #fff;
  22. border-radius: 20px;
  23. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  24. position: relative;
  25. overflow: hidden;
  26. display: flex;
  27. align-items: center;
  28. flex-direction: column;
  29. }
  30.  
  31. .counter-box::before {
  32. content: '';
  33. position: absolute;
  34. background-color: #51d658;
  35. top: 0;
  36. left: 0;
  37. right: 0;
  38. bottom: 25%; /* Ajustați valoarea bottom pentru a schimba aria verde */
  39. z-index: 0;
  40. }
  41.  
  42. .counter-content {
  43. z-index: 1;
  44. text-align: center;
  45. color: #333;
  46. position: absolute;
  47. width: 100%;
  48. bottom: 0; /* Așezați conținutul la partea de jos a containerului */
  49. padding-bottom: 10px; /* Spațiu la partea de jos */
  50. }
  51.  
  52. .counter-icon {
  53. background-color: #fff;
  54. border-radius: 50%;
  55. padding: 10px;
  56. /* dimensiunea containerului iconiței */
  57. width: 40px;
  58. height: 40px;
  59. display: flex;
  60. justify-content: center;
  61. align-items: center;
  62. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  63. margin: 0 auto; /* Centrarea iconiței */
  64. position: relative;
  65. top: -20px; /* Ridicați iconița pentru a se suprapune cu partea verde */
  66. }
  67.  
  68. .counter-text {
  69. font-size: 14px; /* Ajustați dimensiunea fontului după cum este necesar */
  70. margin: 0;
  71. padding: 0;
  72. }
  73.  
  74. .counter-number {
  75. font-size: 24px; /* Ajustați dimensiunea fontului după cum este necesar */
  76. font-weight: bold;
  77. margin: 0;
  78. }
  79. </style>
  80. </head>
  81. <body>
  82.  
  83. <div class="counter-box">
  84. <div class="counter-icon">
  85. <!-- Inserați aici imaginea iconiței -->
  86. <img src="path_to_your_icon.png" alt="Icon" style="width: 24px; height: 24px;">
  87. </div>
  88. <div class="counter-content">
  89. <div class="counter-text">Web Designing</div>
  90. <div class="counter-number">1963</div>
  91. </div>
  92. </div>
  93.  
  94. </body>
  95. </html>
  96.  
Add Comment
Please, Sign In to add comment