/* the css file is where you put all your styles rules, it defines the appereance of your page usually is placed in this way "root/css/whatever.css" */

/* in your html you can assign a 'class' or an 'id' inside your opening tag (i.e. '<p class="something">' ) than you can recall that class ('.something') or id('#something') inside the css and assign rules to specify how your content will be visualized.  */



/* div{
border:1px solid;
}*/
ul{
    display: block;
    padding: 0;
    list-style-type: none;
}

.rosso{
    color:red; 
}

body{
    background-color: beige !important;
    height: 100% !important;
    font-size: 13px;
}

.container{
    width: 90% !important;
}

p{
    font-size: 16px;
}

.icone{
    height: 50px;
    display: block;
    margin: 0px auto 20px auto;
}

.nav{
    font-size: 16px;
}


.nav li{
    position: relative;
    display: inline-block;
    padding: 10px;
}

.nav li:first-child{
    padding-left: 0px;
}

a{
    color: orangered !important;

}

.main{
    padding-bottom: 30px;
}
.main a{
    font-size: 16px;
}

.button{
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

.logo{
    height:50px;
    padding:5px;
    display: block;
}

.exercise, .col-md-4{
    margin-top: 30px;
}

.info{
    position: absolute;
    display: inherit;
    bottom:20px;
    color: beige;
    background-color: orangered;
    padding: 0px 5px 0px 5px;
}

.footer{
    position:relative;
    top:50px;
    width:100%;
    height:60px;
}

.footer p{
    margin-top: 20px;
    font-size: 13px;
    color:white;
}

.jumbotron{
    background-image: url(http://www.mashsf.com/wp-content/uploads/2015/10/IMG_20410.jpg);
    color: beige!important;
}

h2{
    font-size: 24px;
}

.side{

}
code {
  color: orangered !important;
  white-space: nowrap;
  background-color: white !important;
    font-size: 12px !important;
}

/* menu weeks
.side-menu {
    text-align: right;
    font-size: 16px;
}

.side-menu li{
    padding: 10px;

}

.side-menu a{
    padding: 10px;
    border-bottom: 1px solid;
}
*/
img {
    padding:0 !important;
}



.center {
    text-align: center;
    margin: 0px auto;
}

.lista-vera {
    list-style-type: disc;
    font-size: 16px;
    line-height: 1.5;
}



.highlight {
    color: orangered;
}



.clipped {
    position: absolute;
    clip: rect(0px,400px,330px,0px);
}
