32 lines
494 B
CSS
32 lines
494 B
CSS
.grid .tile .img{
|
|
visibility: visible;
|
|
border:1px dotted #223;
|
|
background-size:cover;
|
|
background-position:center;
|
|
background-repeat: no-repeat;
|
|
border-radius:5px 5px 0px 0px;
|
|
height:33vh;
|
|
}
|
|
.grid .tile{
|
|
margin: 0px 15px 15px 0px;
|
|
width:31%;
|
|
float:left;
|
|
background-color:#333;
|
|
}
|
|
.grid .tile .text{
|
|
padding: 10px 20px 10px 20px !important;
|
|
}
|
|
|
|
|
|
.grid .tile img.icon{
|
|
transform: translate(0,5px);
|
|
}
|
|
|
|
.clear{
|
|
clear:both;
|
|
}
|
|
|
|
.jumbotron{
|
|
padding: 15px 20px 15px 20px;
|
|
}
|
|
|