* {
    box-sizing: border-box;
}

body {
    font-family: Tahoma, Arial;
}

.repos-container {
    width: 1000px;
    background-color: #f6f6f6;
    margin: auto;
}

.repos-container .git-repos {
    padding: 20px;
    display: flex;
    background-color: #EEE;
}

.repos-container .git-repos input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    font-size: 20px;
    height: 54px;
    outline: none;
}
.repos-container .git-repos input:focus {
    border: 2px solid #0e69;
}

.repos-container .git-repos .get-buttons {
    width: 140px;
    margin-left: 10px;
    height: 54px;
    background-color: #0e69;
    color: #FFF;
    line-height: 54px;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
}

.repos-container .show-data {
    padding: 20px;
    background-color: #e0e0e0;
}


.repos-container .show-data .repo-box {
    background-color: #FFF;
    padding: 20px;
}


.repos-container .show-data .repo-box:not(:last-child) {
    margin-bottom: 5px;
}

.repos-container .show-data .repo-box span, 
.repos-container .show-data .repo-box a {
    float: right;
    margin-left: 4px;
    padding: 8px;
    border-radius: 5px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #EEE;
}


.repos-container .show-data .repo-box a {
    text-decoration: none;
    background-color: #E91E63;
}

.repos-container .show-data .repo-box span {
    background-color: #009688;
}
