﻿@import "./shared.scss";


.top-list {
    position: absolute;
    top: 50px;
    left: 50px;
    width: 400px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 10px;

    pointer-events: all;
    
    overflow: scroll;

    .list-button {
        // font-family: "GrapeSoda";
        font-size: 30px;
        padding: 20px 40px;
        width: 100%;
        // border-radius: 10px;
        /*background-image: linear-gradient(-90deg, #4f7de0, #1f3a73);
        border: 5px solid white;
        color: white;
        cursor: pointer;

        &.selected {
            background-image: linear-gradient(-90deg, #89e04f, #3a731f);
        }

        &:hover {
            background-image: linear-gradient(-90deg, #7597df, #1f3a73);
            sound-in: "sounds/menu/button-hover.sound";

            &.selected {
                background-image: linear-gradient(-90deg, #a4df4f, #3a731f);
            }
        }

        &:active {
            background-color: rgba(76, 248, 76, 0.5);
            sound-in: "sounds/menu/button-click.sound";
        }*/
    }
    
    h2 {
        font-family: "PixCon";
        font-size: 40px;
        margin-bottom: 10px;
        align-self: flex-start;
        
    }
}

/*.top-details {
    position: absolute;
    top: 50px;
    right: 50px;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    // background-color: rgba(0, 0, 0, 0.5);
    // backdrop-filter: blur(1px);
    background-image: linear-gradient(90deg, #4f7de0, #1f3a73);
    border: 5px solid white;

    width: 600px;

    padding: 20px;

    gap: 5px;

    font-family: "Tecmo Bowl";
    font-size: 30px;

    pointer-events: all;
    
    font-smooth: never;
    
    border-radius: 10px;

    h2 {
        font-family: "PixCon";
        font-size: 60px;
        margin-bottom: 20px;
    }

    ul {
        flex-direction: column;
        gap: 10px;
        width: 100%;

        li {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 30px;

            strong {
                font-weight: bold;
            }
        }
    }

    .buttons {
        flex-direction: row;
        gap: 10px;
        
        margin-top: 50px;

        !*button {
            font-family: "Rubik Mono One";
            font-size: 30px;
            padding: 10px 20px;
            border-radius: 10px;
            background-color: rgba(0, 0, 0, 0.8);
            color: white;
            cursor: pointer;

            &.disabled {
                color: rgba(255, 255, 255, 0.5);
                cursor: not-allowed;
            }

            &:hover {
                background-color: rgba(58, 124, 151, 0.5);
                sound-in: "sounds/menu/button-hover.sound";
            }

            &:active {
                background-color: rgba(76, 248, 76, 0.5);
                sound-in: "sounds/menu/button-click.sound";
            }
        }*!
    }

    small {
        font-size: 30px;
        margin-top: 20px;
    }

}*/

