application.css.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /*
  2. * This is a manifest file that'll automatically include all the
  3. * stylesheets available in this directory and any sub-directories.
  4. * You're free to add application-wide styles to this file and they'll
  5. * appear at the top of the compiled file, but it's generally better
  6. * to create a new file per style scope.
  7. *= require_self
  8. *= require_tree .
  9. */
  10. #banner {
  11. background: #9c9;
  12. padding: 10px;
  13. border-bottom: 2px solid;
  14. font: small-caps 40px/40px "Times New Roman", serif;
  15. color: #282;
  16. text-align: center;
  17. img {
  18. float: left;
  19. }
  20. }
  21. #notice {
  22. color: #000 !important;
  23. border: 2px solid red;
  24. padding: 1em;
  25. margin-bottom: 2em;
  26. background-color: #f0f0f0;
  27. font: bold smaller sans-serif;
  28. }
  29. #columns {
  30. background: #141;
  31. #main {
  32. margin-left: 17em;
  33. padding: 1em;
  34. background: white;
  35. }
  36. #side {
  37. float: left;
  38. padding: 1em 2em;
  39. width: 13em;
  40. background: #141;
  41. ul {
  42. padding: 0;
  43. li {
  44. list-style: none;
  45. a {
  46. color: #bfb;
  47. font-size: small;
  48. }
  49. }
  50. }
  51. }
  52. }