app.scss 961 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // Variables
  2. @import 'variables';
  3. // Bootstrap
  4. @import '~bootstrap/scss/bootstrap';
  5. /* universal */
  6. body {
  7. font-family: Hiragino Sans GB, "Hiragino Sans GB", Helvetica, "Microsoft YaHei", Arial, sans-serif;
  8. font-size: 14px;
  9. }
  10. /* header */
  11. .navbar-static-top {
  12. border-color: #e7e7e7;
  13. background-color: #fff;
  14. box-shadow: 0px 1px 11px 2px rgba(42, 42, 42, 0.1);
  15. border-top: 4px solid #00b5ad;
  16. border-bottom: 1px solid #e8e8e8;
  17. margin-bottom: 40px;
  18. margin-top: 0px;
  19. }
  20. /* Sticky footer styles */
  21. html {
  22. position: relative;
  23. min-height: 100%;
  24. }
  25. body {
  26. /* Margin bottom by footer height */
  27. margin-bottom: 60px;
  28. }
  29. .footer {
  30. position: absolute;
  31. bottom: 0;
  32. width: 100%;
  33. /* Set the fixed height of the footer here */
  34. height: 60px;
  35. background-color: #000;
  36. .container {
  37. padding-right: 15px;
  38. padding-left: 15px;
  39. p {
  40. margin: 19px 0;
  41. color: #c1c1c1;
  42. a {
  43. color: inherit;
  44. }
  45. }
  46. }
  47. }