custom.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .padding-fifty {
  2. padding-top: 50px;
  3. }
  4. .padding-twenty {
  5. padding-top: 20px;
  6. }
  7. .display-none {
  8. display: none;
  9. }
  10. .list-group-item {
  11. word-break: break-all;
  12. }
  13. .list-group-item.selected {
  14. background: #dff0d8 !important;
  15. color: #3c763d !important;
  16. font-weight: bold;
  17. }
  18. #snackbar {
  19. visibility: hidden;
  20. min-width: 250px;
  21. margin-left: -125px;
  22. background-color: #5cb85c;
  23. color: #fff;
  24. text-align: center;
  25. border-radius: 2px;
  26. padding: 16px;
  27. position: fixed;
  28. z-index: 1;
  29. left: 50%;
  30. bottom: 30px;
  31. font-size: 17px;
  32. }
  33. #snackbar.show {
  34. visibility: visible;
  35. -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  36. animation: fadein 0.5s, fadeout 0.5s 2.5s;
  37. }
  38. @-webkit-keyframes fadein {
  39. from {bottom: 0; opacity: 0;}
  40. to {bottom: 30px; opacity: 1;}
  41. }
  42. @keyframes fadein {
  43. from {bottom: 0; opacity: 0;}
  44. to {bottom: 30px; opacity: 1;}
  45. }
  46. @-webkit-keyframes fadeout {
  47. from {bottom: 30px; opacity: 1;}
  48. to {bottom: 0; opacity: 0;}
  49. }