Skip to content
Snippets Groups Projects
Stream.module.scss 2.26 KiB
Newer Older
insert's avatar
insert committed
.stream {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: var(--theme-primary);
    min-height: 0;
    overflow-y: auto;

    .header {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        height: 50px;
        padding: 0 15px 0;

        .container {
            display: flex;
            flex-direction: row;
            flex-grow: 1;
            align-items: center;
            font-weight: 600;

            .clickable {
                display: flex;
                flex-direction: row;
                align-items: center;
                text-decoration: none;
                color: var(--theme-text-color);
                &:hover {
                    text-decoration: underline;
                }

                .avatar {
                    height: 30px;
                    width: 30px;
                    background: red;
                    border-radius: 50%;
                    margin-right: 8px;
                }

                .username {
                    font-size: 14px;
                }
            }
        }
    }

    .player {
        width: 100%;
        min-height: 575px;
    }

    .rewards {
        display: flex;
        align-items: center;
        flex-direction: row;
        height: 60px;
        flex-shrink: 0;
        background: var(--theme-tertiary);
        padding: 0 20px 0;

        .icon {
            fill: red;
            margin-right: 10px;
            vertical-align: middle;
            height: 30px;
        }

        .description {
            font-size: 14px;
            color: #AEAEAE;
            font-weight: 700;
            flex-grow: 1;
        }
    }

    .info {
        padding: 15px;
        .title {
            font-weight: 700;
            h1 {
                font-size: 30px;
                margin: 8px 0;
            }
        }

        .stats {
            font-size: 14px;
            font-weight: 700;
            color: #7C7C7C;
        }

        .description {

        }
    }
}
/* remove later */
.button {
    display: flex;
    padding: 0 10px;
    flex-direction: row;
    align-items: center;
    height: 30px;
    background: lightgray;
    border-radius: 4px;
    text-decoration: none;
    color: black;
    font-weight: 700;
    font-size: 14px;
}