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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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. margin-bottom: 10px;
  38. }
  39. .title {
  40. font-weight: bold;
  41. font-size: 1.2em;
  42. margin-bottom: 6px;
  43. }
  44. .small-width-container {
  45. text-align: center !important;
  46. }
  47. .small-width {
  48. width: auto !important;
  49. text-align: left !important;
  50. max-width: 540px !important;
  51. width: 90% !important;
  52. margin-left: auto;
  53. margin-right: auto;
  54. }
  55. #notify-box {
  56. @prefix transition: max-height 0.2s;
  57. max-height: 0px;
  58. background-color: #F8F8F8;
  59. border: 1px solid #E7E7E7;
  60. overflow: hidden;
  61. position: fixed;
  62. bottom: 0px;
  63. width: 100%;
  64. @prefix box-sizing: content-box;
  65. }
  66. #notify-box .close {
  67. height: 48px;
  68. line-height: 48px;
  69. float: right;
  70. padding: 0px;
  71. position: absolute;
  72. top: 0px;
  73. bottom: 0px;
  74. margin: auto;
  75. right: 12px;
  76. }
  77. #notify-box .title,
  78. #notify-box .body {
  79. margin-left: 12px;
  80. width: calc(100% - 42px);
  81. margin-top: 16px;
  82. }
  83. #notify-box .title {
  84. font-weight: bold;
  85. }
  86. #notify-box.active {
  87. min-height: 48px;
  88. max-height: 48px;
  89. }
  90. #notify-box.active:hover {
  91. @prefix transition: max-height 0.6s;
  92. max-height: 200px;
  93. }