37 lines
744 B
CSS
37 lines
744 B
CSS
|
|
.navbar {
|
||
|
|
border-radius: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.container-full {
|
||
|
|
margin: 0 auto;
|
||
|
|
width: 90%;
|
||
|
|
}
|
||
|
|
.btn {
|
||
|
|
border-radius: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.btn-secondary {
|
||
|
|
color: #fff;
|
||
|
|
background-color: #b1b0b0;
|
||
|
|
border-color: #b1b0b0;
|
||
|
|
}
|
||
|
|
|
||
|
|
.glyphicon-refresh-animate {
|
||
|
|
-animation: spin 1s infinite linear;
|
||
|
|
-webkit-animation: spinWebkit 1s infinite linear;
|
||
|
|
-moz-animation: spinMoz 1s infinite linear;
|
||
|
|
}
|
||
|
|
|
||
|
|
@-webkit-keyframes spinWebkit {
|
||
|
|
from { -webkit-transform: rotate(0deg);}
|
||
|
|
to { -webkit-transform: rotate(360deg);}
|
||
|
|
}
|
||
|
|
@keyframes spinMoz {
|
||
|
|
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);}
|
||
|
|
}
|