Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- html, body {
- height: 100%;
- margin: 0;
- padding: 0;
- font-family: sans-serif;
- background: linear-gradient(#141e30, #243b55);
- color: #fff;
- }
- /* Основен контейнер */
- .info-section {
- position: absolute;
- top: 50%;
- left: 50%;
- width: 400px;
- padding: 40px;
- transform: translate(-50%, -50%);
- background: rgba(0, 0, 0, 0.5);
- box-sizing: border-box;
- box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
- border-radius: 10px;
- }
- /* Заглавие */
- .info-section h1 {
- margin-bottom: 30px;
- text-align: center;
- font-size: 28px;
- color: #f4ec03;
- }
- /* Снимка на профила */
- .profile-photo {
- text-align: center;
- margin-bottom: 20px;
- }
- .profile-photo img {
- width: 120px;
- height: 120px;
- border-radius: 50%;
- border: 3px solid #f4ec03;
- object-fit: cover;
- }
- /* Описание */
- .description {
- font-size: 16px;
- margin-bottom: 10px;
- padding-left: 5px;
- border-left: 3px solid #f4ec03;
- }
- /* Бутони */
- .buttons {
- margin-top: 30px;
- text-align: center;
- display: flex;
- justify-content: space-between;
- }
- .edit-button,
- .delete-button {
- padding: 10px 20px;
- color: #f4ec03;
- font-size: 14px;
- text-decoration: none;
- text-transform: uppercase;
- border: 1px solid #f4ec03;
- border-radius: 5px;
- background: transparent;
- transition: all 0.3s ease;
- width: 45%;
- text-align: center;
- }
- .edit-button:hover,
- .delete-button:hover {
- background-color: #f4ec03;
- color: #141e30;
- box-shadow: 0 0 10px #f4ec03;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement