| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- /*html, body {
- background-color: #f5f5f5;
- height: 100%;
- }
- body > .container {
- background-color: #FFFFFF;
- height: 100%;
- }
- .row {
- margin-top: 5px;
- }
- .logo {
- max-height: 42px;
- }
- .pleaselogin {
- padding-top: 25%;
- }
- .signinbox {
- max-width: 25%;
- padding-top: 15%;
- }
- .form-signin input[type="text"] {
- border-bottom-right-radius: 0;
- border-bottom-left-radius: 0;
- }
- .form-signin input[type="password"] {
- margin-bottom: 10px;
- border-top-left-radius: 0;
- border-top-right-radius: 0;
- }
- table tr > td:last-of-type {
- text-align: right;
- width: 50%;
- }*/
- .navbar-label-header {
- font-weight: 600;
- }
- table td {
- vertical-align: middle !important;
- }
- #protocol.editable-element-select-protocol {
- text-transform: uppercase;
- }
- /*.footer {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 60px;
- background-color: #f5f5f5;
- }*/
- .editbox-input, .editbox-draft-vars {
- float: right;
- }
- /* Spinner (http://tobiasahlin.com/spinkit/) */
- .spinner {
- margin: 0 auto;
- width: 15px;
- text-align: left;
- float: left
- }
- .spinner > div {
- width: 5px;
- height: 5px;
- background-color: #333;
- border-radius: 100%;
- display: inline-block;
- -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
- animation: bouncedelay 1.4s infinite ease-in-out;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- }
- .spinner .bounce1 {
- -webkit-animation-delay: -0.32s;
- animation-delay: -0.32s;
- }
- .spinner .bounce2 {
- -webkit-animation-delay: -0.16s;
- animation-delay: -0.16s;
- }
- @-webkit-keyframes bouncedelay {
- 0%, 80%, 100% {
- -webkit-transform: scale(0.0)
- }
- 40% {
- -webkit-transform: scale(1.0)
- }
- }
- @keyframes bouncedelay {
- 0%, 80%, 100% {
- transform: scale(0.0);
- -webkit-transform: scale(0.0);
- }
- 40% {
- transform: scale(1.0);
- -webkit-transform: scale(1.0);
- }
- }
|