treasure chest

    Информация о пользователе

    Привет, Гость! Войдите или зарегистрируйтесь.


    Вы здесь » treasure chest » Склад скриптов » Магазин артефактов


    Магазин артефактов

    Сообщений 1 страница 2 из 2

    1

    [hideprofile]

    оружие
    ритуальные предметы
    украшения
    элементы одежды
    музыкальные инструменты
    емкости
    прочие артефакты

    0

    2

    CSS:

    Код:
        .capsule-container {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
            font-family: Verdana, Geneva, sans-serif; 
            padding-bottom: 20px;
            margin: 15px;
        }
    
        .capsule {
            background: #1e1e1e; /* Цвет плашки */
            border-radius: 30px;
            overflow: hidden;
            width: 200px;
            height: 400px;
            text-align: center;
            box-shadow: 0 8px 14px rgba(0, 0, 0, 0.5);
            position: relative;
        }
    
        .capsule:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 14px rgba(0, 0, 0, 0.8);
        }
    
        .capsule-image-container {   
            width: 100%;
            height: 200px;
            position: relative;
            overflow: hidden;
        }
    
        .capsule-image-container img {
            position: absolute;
            width: 100%;
            height: auto;
            top: 0px;
            left: 0px;
            transition: top 0.3s ease;
        }
    
        .capsule-content {
            padding: 15px 0px 6px 0px;
        }
    
        .capsule-title {
            font-size: 1.3rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #619c8e; 
        }
    
        .capsule-subtitle {
            font-size: 1rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: #fefefefe; 
        }
    
        .capsule-text {
            font-size: 1rem;
            color: #ccc; 
            max-height: 110px;
            overflow: auto;
            padding-right: 10px;
            font-weight: normal;
        }
    
        .capsule-link {
            text-decoration: none;
            color: inherit;
        }

    0


    Вы здесь » treasure chest » Склад скриптов » Магазин артефактов