@import "head.css";
@import "tweets.css";
@import "items.css";

html {
    font-family: "Arial, Helvetica", sans-serif;
    color: #14171a;
    font-size: 14px;
}

body {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #fafafa;
}

a:link {
    color:#66a9ec;
    text-decoration: none;
}

a:visited {
    color:#66a9ec;
}

a:hover {
    /*color:#1da1f2;*/
    color:red;
}

.title {
    font-size: 24px;
    color: grey;
    font-weight: lighter;
}

/* ----------------------- */

#main-container {
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    max-width: 1200px;
    padding-top: 50px;
}

/* aside */

#main-container .col-left {
    width: 300px;
    float: left;
}

#main-container .col-main {
    width: 900px;
    float: right;
}


#main-container .content-area {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 10px;
    background-color: white;
    border: 1px solid #ccc;
    overflow: auto;
}

.content-area #user-info {
}

#user-info .profile-pict{
    height: 200px;
    background-image: url("/img/profile-pict1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #66a9ec;
}

#user-info .user-pict{
    background-color: white;
    width: 105px;
    height: 105px;
    float: left;
    z-index: 200;
    position: relative;
    bottom: 100px;
    left: 100px;
    display:none;
}

#user-info .stats{
    height: 40px;
    padding-top: 10px;
    background-color: white;
}

#user-info .stat-item{
    padding-left: 10px;
    padding-right: 5px;
    height: 100%;
    float:left;
    display: block;
}

#user-info .stat-item .stat-title {
    text-transform: uppercase;
    color: grey;

}

#user-info .tweet-entry{
    height: 35px;
}

/*---------------------- trends */
.content-area #trends {
    padding: 10px;
}

#trends ul {
    padding-left:0;
}

#trends li {
    padding-bottom: 10px;
    list-style: none;
}



/*---------------------- corporate */

.content-area #corporate{
    padding: 10px;
}



/*responsive breakpoints*/

@media (min-width: 786px) {
}
/* Medium devices (desktops, 992px and up) */

@media (min-width: 992px) {
}
/* Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {
}



