﻿
@import url(../css/open-sans-font.css);

.siticone_winforms_container {
    font-family: OpenSans-Regular;
    background-color: rgb(54, 88, 149);
    padding: 50px;
    transition: all ease .5s;
    /**/
    background-image: url(../imgs/documentation/winforms-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media(max-width:1080px) {
    .siticone_winforms_container {
        background-image: none;
    }
}

.siticone_winforms_header_section {
    padding-top: 80px;
    color: white;
}

.all_components {
    font-family: OpenSans-Regular;
    padding: 50px;
    color: rgb(227, 227, 227);
    background-color: rgb(23, 23, 23);
    transition: all ease .5s;
}

    .all_components .para {
        color: rgb(184, 184, 184);
    }

.components_grid {
    margin-top: 50px;
    display: grid;
    grid-gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    transition: all ease .5s;
}

.grid_item .grid_item_header {
    font-size: 18px;
    padding: 10px 10px 10px 0px;
    border-bottom: dashed rgba(255, 255, 255, 0.2) 2px;
}

.components_list {
    margin-top: 20px;
    line-height: 42px;
}

.component {
    font-size: 17px;
    padding: 7px 2px 7px 15px;
    color: rgb(77, 178, 255);
    border-left: solid 6px rgb(69, 69, 69);
    transition: none;
}


    .component:hover {
        border-left: solid 6px rgb(77, 178, 255);
        color: rgb(0, 144, 255);
    }

.open_in_new_tab {
    font-size: 12px;
}
/*
    ---------------------
    Media Queries
*/
@media(max-width:1160px) {
    .all_components {
        padding: 50px 10px;
    }
}

@media(max-width:1080px) {
    .components_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:810px) {
    .components_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(max-width:600px) {
    .components_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .siticone_winforms_container {
        padding: 50px 10px;
    }
}
