Channel.css 1.69 KB
.channel__list {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    flex: 0.3;
    min-width: 500px;
    height: 100vh;
    color: white;
    background-color: #0e0e0e;
    box-sizing: border-box;
}

.channel__list__title {
    display: flex;
    padding: 25px;
    width: 30vw;
    min-width: 500px;
    background-color: #0e0e0e;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    box-sizing: border-box;
}

.channel__list > ul {
    list-style: none;
    overflow: auto;
    padding-top: 50px;
}

.channel__list > ul > li > hr {
    border: 2px solid #282828;
}

.channel {
    display: flex;
    align-items: center;
    flex-direction: row;
    height: 100px;
    background-color: #0e0e0e;
}

.channel__url {
    display: flex;
    align-items: center;
    flex-grow: 1;
    text-decoration: none;
    font-size: 14px;
    color:white;
    box-sizing: border-box;
    padding-top: 20px;
    padding-bottom: 20px;
}

.channel__box {
    display: flex;
    flex-basis: 80%;
    flex-direction: row;
    justify-content: space-between;
}

.channel__thumbnail {
    height: 25px;
    width: 25px;
    border-radius: 70%;
    overflow: hidden;
    margin-right: 30px;
    background-color: white;
}

.channel__icon {
    height: 25px;
    width: 25px;
    border-radius: 70%;
    overflow: hidden;
    margin-right: 30px;
}

.channel__info {
    flex-basis: 70%;
    margin-right: 20px;
}

.channel__name {
    align-content: center;
    font-size: 16px;
}

.channel__game {
    font-size: 12px;
    color: gray;
}

.channel__view {
    text-align: right;
}

.play__icon {
    margin-left: 10px;
    margin-right: 10px;
}

.pause__icon {
    margin-left: 10px;
    margin-right: 10px;
}