style.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /*html, body {
  2. background-color: #f5f5f5;
  3. height: 100%;
  4. }
  5. body > .container {
  6. background-color: #FFFFFF;
  7. height: 100%;
  8. }
  9. .row {
  10. margin-top: 5px;
  11. }
  12. .logo {
  13. max-height: 42px;
  14. }
  15. .pleaselogin {
  16. padding-top: 25%;
  17. }
  18. .signinbox {
  19. max-width: 25%;
  20. padding-top: 15%;
  21. }
  22. .form-signin input[type="text"] {
  23. border-bottom-right-radius: 0;
  24. border-bottom-left-radius: 0;
  25. }
  26. .form-signin input[type="password"] {
  27. margin-bottom: 10px;
  28. border-top-left-radius: 0;
  29. border-top-right-radius: 0;
  30. }
  31. table tr > td:last-of-type {
  32. text-align: right;
  33. width: 50%;
  34. }*/
  35. .navbar-label-header {
  36. font-weight: 600;
  37. }
  38. table td {
  39. vertical-align: middle !important;
  40. }
  41. #protocol.editable-element-select-protocol {
  42. text-transform: uppercase;
  43. }
  44. /*.footer {
  45. position: absolute;
  46. bottom: 0;
  47. left: 0;
  48. width: 100%;
  49. height: 60px;
  50. background-color: #f5f5f5;
  51. }*/
  52. .editbox-input, .editbox-draft-vars {
  53. float: right;
  54. }
  55. /* Spinner (http://tobiasahlin.com/spinkit/) */
  56. .spinner {
  57. margin: 0 auto;
  58. width: 15px;
  59. text-align: left;
  60. float: left
  61. }
  62. .spinner > div {
  63. width: 5px;
  64. height: 5px;
  65. background-color: #333;
  66. border-radius: 100%;
  67. display: inline-block;
  68. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  69. animation: bouncedelay 1.4s infinite ease-in-out;
  70. -webkit-animation-fill-mode: both;
  71. animation-fill-mode: both;
  72. }
  73. .spinner .bounce1 {
  74. -webkit-animation-delay: -0.32s;
  75. animation-delay: -0.32s;
  76. }
  77. .spinner .bounce2 {
  78. -webkit-animation-delay: -0.16s;
  79. animation-delay: -0.16s;
  80. }
  81. @-webkit-keyframes bouncedelay {
  82. 0%, 80%, 100% {
  83. -webkit-transform: scale(0.0)
  84. }
  85. 40% {
  86. -webkit-transform: scale(1.0)
  87. }
  88. }
  89. @keyframes bouncedelay {
  90. 0%, 80%, 100% {
  91. transform: scale(0.0);
  92. -webkit-transform: scale(0.0);
  93. }
  94. 40% {
  95. transform: scale(1.0);
  96. -webkit-transform: scale(1.0);
  97. }
  98. }