/*
-------------------------------------------
  Author: Seyon Rajagopal
  Copyright (c) 2020 Seyon Rajagopal
------------------------------------------- 
*/


/* css for start page asking for username */

#title {
    text-align: center;
    vertical-align: middle;
    position: absolute;
    padding: 30px;
    border-radius: 20px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #3C3F58;
}


#title h1 {
    color: white;
    vertical-align: middle;
}

#title i {
    color: rgb(168, 168, 168);
}

#user {
    width: 200px;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 30px;
    background: rgba(36, 37, 42, 0.397);
    color: #fff;
}

#btn {
    width: 100px;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
    background: rgba(0,139,165,1);;
    color: #fff;
    cursor: pointer;
}

#back {
    text-align: center;
    margin: 30px;
}

#back a {
    width: 100px;
    margin-top: 20px;
    padding: 10px;
    border-radius: 4px;
    border: none;
    margin-bottom: 10px;
    background: rgba(0,139,165,1);;
    color: #fff;
    cursor: pointer;
}

/*  Modify code bolow to modify to adjust styling for the repositories. The above css is for other elements */
.error-box {
    border-radius: 10px;
    padding: 30px;
    background-color: #2e3047;
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.error-msg {
    font-size: 30px;
    color: #008aa4;
    vertical-align: middle;
}

.img {
    margin-right: 5px; 
}

.repo-item {
    border-radius: 10px;
    padding: 30px;
    margin: 30px;
    background-color: #041230; 
    overflow: auto;
    overflow-wrap: break-word;
}

.description {
    color: white;
}



.title {
    font-size: 30px;
    color: #0c9dd6;
}



.bottom {
    position:relative;
}

.language, .star, .fork {
    max-width: 100px;
    display:inline-block;
    margin-right: 20px;
    color: white;
}



.repo-item:hover{
    text-decoration: none;
    background-color: #1a294b;
    transition: ease-in-out 0.2s;
}

.repo-item:hover > div > div{
    color: #0be929;
    transition: ease-in-out 0.2s;
}



a:hover{
    text-decoration: none;
}
/* End code to modify  #3e4163 */