/* css reset*/
*{
    box-sizing: border-box;
}
*:before, *:after{
    box-sizing: border-box;
}
*{
    margin: 0;
    padding: 0;
}
ul, ol{
    list-style: none;
}
body{
    background-color: #eee;
}
a{
    color: inherit;
    text-decoration: none;
}

.globalHeader{
    margin: 20px;
}
@media (min-width:500px) {
    .globalHeader{
        margin: 70px 0px 100px;
    } 
}
.searchForm{
    display: flex;
    justify-content: space-between;
}
@media (min-width:500px) {
    .searchForm{
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    } 
}
.searchForm > input{
    width: 100%;
    margin-right: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.searchForm > button{
    white-space: nowrap;
    font-size: 15px;
    padding: 10px 25px;
    background-color: #18a0fb;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #fff;
}

.globalMain{
    max-width: 830px;
    margin-left: auto;
    margin-right: auto;
}

.siteList{
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (min-width:500px) {
    .siteList{
        margin-left: 0px;
        margin-right: -20px;
        justify-content: flex-start;
    } 
}
.siteList > li{
    margin-bottom: 10px;
}
@media (min-width:500px) {
    .siteList > li{
        margin-bottom: 20px;
        margin-right: 20px;
    }
}
.siteList .site{
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 150px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    background-color: #fff;
    position: relative;
    cursor: pointer;
}
.siteList .site >.logo{
    font-size: 64px;
    text-transform: uppercase;
}
.siteList .site >.link{
}
.siteList .addButton{
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 150px;
    height: 140px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
.siteList .addButton .icon{
    margin-top: 10px;
    font-size: 56px;
}
.siteList .site > .siteIcon{
    position: absolute;
    right: 5px;
    top: 5px;
    display: none;
    cursor: default;
}
.siteList .site:hover > .siteIcon{
    display: block;
}

/*# sourceMappingURL=style.288a6cd9.css.map */