style.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. body {
  2. background: #eee;
  3. }
  4. #login {
  5. background: #fff;
  6. width: 400px;
  7. margin: 10vh auto;
  8. padding: 1em;
  9. border-radius: 5px;
  10. }
  11. #login h1 {
  12. font-size: 33px;
  13. background: #1E5B94;
  14. color: #fff;
  15. text-align: center;
  16. padding: 10px;
  17. border-radius: 5px;
  18. }
  19. .container {
  20. background: #fff;
  21. }
  22. .delete {
  23. color: red;
  24. font-weight: bold;
  25. }
  26. #loader {
  27. text-align: center;
  28. }
  29. #loader img {
  30. height: 128px;
  31. }
  32. #folder-list .button.float-right {
  33. font-size: 8pt;
  34. margin-left: 4px;
  35. margin-bottom: 0;
  36. }
  37. #folder-list .button.float-right:hover {}
  38. #folder-list {
  39. height: 240px;
  40. overflow-y: scroll;
  41. }
  42. #folder-list li:nth-child(odd) {
  43. background: #eee;
  44. }
  45. #notification {
  46. position: relative;
  47. min-height: 1em;
  48. margin: 1em 0;
  49. padding: 1em 1.5em;
  50. line-height: 1.4285em;
  51. -webkit-transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
  52. transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
  53. border-radius: .28571429rem;
  54. box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent;
  55. background-color: #f8ffff;
  56. color: #276f86;
  57. display: none;
  58. }
  59. #sysInfo {
  60. position: relative;
  61. min-height: 1em;
  62. margin: 1em 0;
  63. padding: 1em 1.5em;
  64. line-height: 1.4285em;
  65. -webkit-transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
  66. transition: opacity .1s ease, color .1s ease, background .1s ease, box-shadow .1s ease;
  67. border-radius: .28571429rem;
  68. box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent;
  69. background-color: #eef5fb;
  70. color: #276f86;
  71. display: none;
  72. }