82 lines
1.6 KiB
CSS
82 lines
1.6 KiB
CSS
/*!
|
|
* The code below adds the modal functionality of the Freelancer Bootstrap Theme
|
|
* and was originally part of this theme.
|
|
*
|
|
*
|
|
* Start Bootstrap - Freelancer Bootstrap Theme (http://startbootstrap.com)
|
|
* Code licensed under the Apache License v2.0.
|
|
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
|
|
*/
|
|
|
|
body {
|
|
overflow-x: hidden;
|
|
}
|
|
|
|
.img-centered {
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.resources-modal .modal-content {
|
|
padding: 100px 0;
|
|
min-height: 100%;
|
|
border: 0;
|
|
border-radius: 0;
|
|
text-align: center;
|
|
background-clip: border-box;
|
|
-webkit-box-shadow: none;
|
|
box-shadow: none;
|
|
}
|
|
|
|
.resources-modal .modal-content h2 {
|
|
margin: 0;
|
|
font-size: 3em;
|
|
}
|
|
|
|
.resources-modal .modal-content img {
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.resources-modal .modal-content .item-details {
|
|
margin: 30px 0;
|
|
}
|
|
|
|
.resources-modal .close-modal {
|
|
position: absolute;
|
|
top: 25px;
|
|
right: 25px;
|
|
width: 75px;
|
|
height: 75px;
|
|
background-color: transparent;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.resources-modal .close-modal:hover {
|
|
opacity: .3;
|
|
}
|
|
|
|
.resources-modal .close-modal .lr {
|
|
z-index: 1051;
|
|
width: 1px;
|
|
height: 75px;
|
|
margin-left: 35px;
|
|
background-color: #2c3e50;
|
|
-webkit-transform: rotate(45deg);
|
|
-ms-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
}
|
|
|
|
.resources-modal .close-modal .lr .rl {
|
|
z-index: 1052;
|
|
width: 1px;
|
|
height: 75px;
|
|
background-color: #2c3e50;
|
|
-webkit-transform: rotate(90deg);
|
|
-ms-transform: rotate(90deg);
|
|
transform: rotate(90deg);
|
|
}
|
|
|
|
.resources-modal .modal-backdrop {
|
|
display: none;
|
|
opacity: 0;
|
|
}
|