style.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  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. /* noty (custom) */
  56. #noty_topCenter_layout_container li {
  57. margin-top: 5px;
  58. }
  59. #calendar {
  60. float: left;
  61. }
  62. /* Spinner (http://tobiasahlin.com/spinkit/) */
  63. .spinner {
  64. margin: 0 auto;
  65. width: 15px;
  66. text-align: left;
  67. float: left
  68. }
  69. .spinner > div {
  70. width: 5px;
  71. height: 5px;
  72. background-color: #333;
  73. border-radius: 100%;
  74. display: inline-block;
  75. -webkit-animation: bouncedelay 1.4s infinite ease-in-out;
  76. animation: bouncedelay 1.4s infinite ease-in-out;
  77. -webkit-animation-fill-mode: both;
  78. animation-fill-mode: both;
  79. }
  80. .spinner .bounce1 {
  81. -webkit-animation-delay: -0.32s;
  82. animation-delay: -0.32s;
  83. }
  84. .spinner .bounce2 {
  85. -webkit-animation-delay: -0.16s;
  86. animation-delay: -0.16s;
  87. }
  88. @-webkit-keyframes bouncedelay {
  89. 0%, 80%, 100% {
  90. -webkit-transform: scale(0.0)
  91. }
  92. 40% {
  93. -webkit-transform: scale(1.0)
  94. }
  95. }
  96. @keyframes bouncedelay {
  97. 0%, 80%, 100% {
  98. transform: scale(0.0);
  99. -webkit-transform: scale(0.0);
  100. }
  101. 40% {
  102. transform: scale(1.0);
  103. -webkit-transform: scale(1.0);
  104. }
  105. }