Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

global.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. .hidden {
  2. display: none;
  3. }
  4. .navbar .navbar-nav {
  5. margin-bottom: 0px;
  6. }
  7. .navbar form {
  8. border: none;
  9. }
  10. #login-dropdown .dropdown-menu {
  11. padding: 10px;
  12. }
  13. #navbar-button {
  14. float: right;
  15. }
  16. #login-dropdown label,
  17. #login-dropdown input {
  18. width: 100%;
  19. }
  20. form .submit-container {
  21. text-align: right;
  22. }
  23. form .submit-container .btn {
  24. width: 100%;
  25. }
  26. form input[type="text"],
  27. form input[type="password"] {
  28. width: 100%;
  29. }
  30. form label {
  31. width: 100%;
  32. }
  33. .bordered {
  34. border: 1px solid #CCC;
  35. border-radius: 4px;
  36. padding: 10px !important;
  37. }
  38. .title {
  39. font-weight: bold;
  40. font-size: 1.2em;
  41. margin-bottom: 6px;
  42. }
  43. .small-width-container {
  44. text-align: center !important;
  45. }
  46. .small-width {
  47. width: auto !important;
  48. text-align: left !important;
  49. max-width: 540px !important;
  50. width: 90% !important;
  51. margin-left: auto;
  52. margin-right: auto;
  53. }
  54. #notify-box {
  55. @prefix transition: max-height 0.2s;
  56. max-height: 0px;
  57. background-color: #F8F8F8;
  58. border: 1px solid #E7E7E7;
  59. overflow: hidden;
  60. position: fixed;
  61. bottom: 0px;
  62. width: 100%;
  63. @prefix box-sizing: content-box;
  64. }
  65. #notify-box .close {
  66. height: 48px;
  67. line-height: 48px;
  68. float: right;
  69. padding: 0px;
  70. position: absolute;
  71. top: 0px;
  72. bottom: 0px;
  73. margin: auto;
  74. right: 12px;
  75. }
  76. #notify-box .title,
  77. #notify-box .body {
  78. margin-left: 12px;
  79. width: calc(100% - 42px);
  80. margin-top: 16px;
  81. }
  82. #notify-box .title {
  83. font-weight: bold;
  84. }
  85. #notify-box.active {
  86. min-height: 48px;
  87. max-height: 48px;
  88. }
  89. #notify-box.active:hover {
  90. @prefix transition: max-height 0.6s;
  91. max-height: 200px;
  92. }