style.css 1.7 KB

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