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 990B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. .hidden {
  2. display: none;
  3. }
  4. .navbar .navbar-nav {
  5. margin-bottom: 0px;
  6. }
  7. #login-dropdown .dropdown-menu {
  8. padding: 10px;
  9. }
  10. #navbar-button {
  11. float: right;
  12. }
  13. #login-dropdown label,
  14. #login-dropdown input {
  15. width: 100%;
  16. }
  17. form .submit-container {
  18. text-align: right;
  19. }
  20. form .submit-container .btn {
  21. width: 75px;
  22. }
  23. #notify-box {
  24. transition: max-height 0.2s;
  25. max-height: 0px;
  26. background-color: #F8F8F8;
  27. border: 1px solid #E7E7E7;
  28. overflow: hidden;
  29. position: fixed;
  30. bottom: 0px;
  31. width: 100%;
  32. box-sizing: content-box;
  33. }
  34. #notify-box .close {
  35. height: 48px;
  36. line-height: 48px;
  37. float: right;
  38. padding: 0px;
  39. position: absolute;
  40. top: 0px;
  41. bottom: 0px;
  42. margin: auto;
  43. right: 12px;
  44. }
  45. #notify-box .title,
  46. #notify-box .body {
  47. margin-left: 12px;
  48. width: calc(100% - 42px);
  49. margin-top: 16px;
  50. }
  51. #notify-box .title {
  52. font-weight: bold;
  53. }
  54. #notify-box.active {
  55. min-height: 48px;
  56. max-height: 48px;
  57. }
  58. #notify-box.active:hover {
  59. transition: max-height 0.6s;
  60. max-height: 200px;
  61. }