8,959
edits
| No edit summary | No edit summary | ||
| Line 3: | Line 3: | ||
|      width: 80px; |      width: 80px; | ||
|      height: 80px; |      height: 80px; | ||
|      border: 2px solid #000;  |      border: 2px solid #000; | ||
|      border-radius: 8px;  |      border-radius: 8px; | ||
|      background-color: #fff;  |      background-color: #fff; | ||
|      cursor: pointer;  |      cursor: pointer; | ||
|      transition: all 0.2s ease; /*  |      transition: all 0.2s ease; | ||
|     /* Добавляем flex для центрирования */ | |||
|     display: flex; | |||
|     justify-content: center; | |||
|     align-items: center; | |||
| } | } | ||
| .social-media:hover { | .social-media:hover { | ||
|      transform: scale(1.1);  |      transform: scale(1.1); | ||
| } | } | ||
| .social-media:active { | .social-media:active { | ||
|      background-color: #ccc;  |      background-color: #ccc; | ||
| } | } | ||