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

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