styles.scss 595 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* You can add global styles to this file, and also import other style files */
  2. @import "../node_modules/purecss/build/pure-min.css";
  3. #app-footer{
  4. width: 100%;
  5. position: fixed;
  6. bottom: 0;
  7. background-color: black;
  8. color: silver;
  9. display: block;
  10. text-align: center;
  11. font-size: 80%;
  12. padding: 5px;
  13. }
  14. #app-header{
  15. background-color: aqua;
  16. }
  17. #app-header h1{
  18. font-size: 120%;
  19. margin: 5px;
  20. }
  21. #app-header h3{
  22. font-size: 70%;
  23. margin: 5px;
  24. color: #333;
  25. }
  26. #app-base-container{
  27. padding: 30px;
  28. }
  29. #app-side-bar{
  30. background-color: #333;
  31. }