style-ps.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. html {
  2. box-sizing: border-box;
  3. font-size: 16px;
  4. }
  5. *, *:before, *:after {
  6. box-sizing: inherit;
  7. }
  8. body, h1, h2, h3, h4, h5, h6, p, ol, ul {
  9. margin: 0;
  10. padding: 0;
  11. font-weight: normal;
  12. }
  13. ol, ul {
  14. list-style: none;
  15. }
  16. img {
  17. max-width: 100%;
  18. height: auto;
  19. }
  20. #footer {
  21. font-family: 'Roboto Condensed', sans-serif;
  22. position: fixed;
  23. bottom: 0px;
  24. background-color: white;
  25. padding: 5px;
  26. width: 100%;
  27. text-align: center;
  28. }
  29. .centered {
  30. display: block;
  31. margin-left: auto;
  32. margin-right: auto;
  33. }
  34. ul > li {
  35. display: inline-block;
  36. /* You can also add some margins here to make it look prettier */
  37. zoom:1;
  38. *display:inline;
  39. padding-left: 5px;
  40. padding-right: 5px;
  41. text-align: center;
  42. }
  43. #info {
  44. z-index: 60;
  45. position: absolute;
  46. right: 0px;
  47. }
  48. /**************************\
  49. Basic Modal Styles
  50. \**************************/
  51. .modal-backdrop {
  52. opacity: 0.5;
  53. }
  54. @keyframes slideInDown {
  55. from {
  56. transform: translate3d(0, -100%, 0);
  57. visibility: visible;
  58. }
  59. to {
  60. transform: translate3d(0, 0, 0);
  61. }
  62. }
  63. .slideInDown .modal-dialog {
  64. animation-duration: .75s;
  65. animation-fill-mode: both;
  66. animation-name: slideInDown;
  67. }
  68. @keyframes slideOutUp {
  69. from {
  70. transform: translate3d(0, 0, 0);
  71. }
  72. to {
  73. visibility: hidden;
  74. transform: translate3d(0, -100%, 0);
  75. }
  76. }
  77. .slideOutUp .modal-dialog {
  78. animation-duration: .75s;
  79. animation-fill-mode: both;
  80. animation-name: slideOutUp;
  81. }