Simple image host.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

global.css 867B

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