pandorafms/pandora_console/include/ehorus/css/style.css

78 lines
1.4 KiB
CSS
Raw Normal View History

2016-05-04 18:48:05 +02:00
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: none;
}
2017-02-20 18:25:46 +01:00
#files-table a.file-link span.glyphicon,
#files-table span.file-link span.glyphicon {
2016-05-04 18:48:05 +02:00
vertical-align: middle;
font-size: x-large;
margin-right: 10px;
}
input.no-mobile-zoom {
font-size: 16px;
}
div.term-container {
width: 100%;
height: 100%;
}
div.term-container div.terminal {
box-shadow: 0 0 30px rgba(0,0,0,0.7);
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
2017-02-20 18:25:46 +01:00
.glyphicon-refresh-animate {
-animation: spin 1s infinite linear;
-webkit-animation: spin2 1s infinite linear;
}
@-webkit-keyframes spin2 {
from {
-webkit-transform: rotate(0deg);
}
to {
-webkit-transform: rotate(360deg);
}
}
2017-06-29 16:10:25 +02:00
.button-color-animate {
color: #337ab7;
-webkit-transition: color 2000ms linear;
-ms-transition: color 2000ms linear;
transition: color 2000ms linear;
}
2017-02-20 18:25:46 +01:00
@-moz-keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}
@-webkit-keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}
@-o-keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}
@keyframes spin {
from {
transform: scale(1) rotate(0deg);
}
to {
transform: scale(1) rotate(360deg);
}
}