Files
development/www/layout/admin/css/smarty_test.css
Clemens Schwaighofer 593e8fa7b0 Relocate folders
the old "www/layout/<admin/frontend>/<template name>/..." layout is
deprecated.

new layout:

www/layout/<admin|frontend>/<cache/css/images/javascript>/
The layout/<admin/frontend> is symlinked to www/<admin|frontend>/layout

templates and lang are moved to includes
www/includes/template/<admin/frontend>
www/includes/lang/<admin/frontend>

and no longer symlinked to any public facing folders

The language po files have already been moved to
4dev/lang/<admin|frontend>/
2019-05-28 10:56:53 +09:00

90 lines
1.5 KiB
CSS
Executable File

/* smart test CSS */
.jq-container {
width: 100%;
margin: 0;
padding: 0;
}
.jp-test {
width: 100%;
padding: 20px;
box-sizing: border-box;
}
.test-div {
padding: 20px;
}
/* CORE overlay, progress elements */
.actionBoxElement {
background-color: white;
border-radius: 10px;
border: 2px solid black;
box-shadow: #333333 10px 10px 25px;
color: black;
/*font-size: 20px;*/
left: 45px;
min-height: 200px;
position: fixed;
text-align: center;
top: 45px;
width: 70%;
z-index: 99;
}
.actionBoxTitle {
background-color: #c2c5cf;
border-radius: 7px 7px 0 0;
margin-bottom: 5px;
padding: 5px;
}
.actionBoxText {
margin: 0 20px 0 20px;
}
.actionBoxButtons {
bottom: 0;
font-size: 20px;
padding: 20px 20px 10px 20px;
position: absolute;
width: 95%;
}
/* the overlay background black cover */
.overlayBoxElement {
background-color: rgba(0, 0, 0, 0.3);
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 98;
}
/* the progress guruguru */
/* NEW VERSION with CSS key frame animation */
.progress {
width: 100px;
height: 100px;
background: rgba(255, 255, 255, 0.6);
border: 20px solid rgba(255, 255, 255, 0.25);
border-left-color: rgba(3, 155, 229 ,1);
border-top-color: rgba(3, 155, 229 ,1);
border-radius: 50%;
display: inline-block;
animation: rotate 600ms infinite linear;
/* align */
left: 0;
top: 0;
position: absolute;
z-index: 120;
}
/* Animation for above progress */
@keyframes rotate {
to {
transform: rotate(1turn)
}
}