You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

117 lines
2.3KB

  1. $color1: #BB8757 ;
  2. $color2: #F8F1DD ;
  3. body {
  4. font-family: 'Arial' ;
  5. }
  6. #header {
  7. background-color: $color1 ;
  8. text-align: center ;
  9. padding: 40px ;
  10. padding-bottom: 70px ;
  11. border-bottom: solid 1px #e0e0e0 ;
  12. .container {
  13. position: relative ;
  14. }
  15. h1, h2 {
  16. color: white ;
  17. }
  18. h1 {
  19. text-transform: uppercase ;
  20. font-family: 'myriadpro-regular' ;
  21. font-size: 35px ;
  22. padding-bottom: 10px ;
  23. font-weight: bold ;
  24. }
  25. h2 {
  26. font-family: 'myriadpro-it' ;
  27. font-size: 18px ;
  28. }
  29. #credit {
  30. position: absolute ;
  31. top: 0px ;
  32. right: 0px ;
  33. color: white ;
  34. font-family: 'myriadpro-semibold' ;
  35. border-bottom: solid 1px white ;
  36. padding: 7px 10px ;
  37. span {
  38. font-family: 'myriadpro-light' ;
  39. }
  40. }
  41. }
  42. #main {
  43. background-color: #FAFAFA ;
  44. #main-nav {
  45. width: 100% ;
  46. position: relative ;
  47. top: -40px ;
  48. background-color: white ;
  49. border-bottom: solid 1px #e0e0e0 ;
  50. ul {
  51. li {
  52. a {
  53. color: $color1 ;
  54. text-transform: uppercase ;
  55. font-family: 'myriadpro-regular' ;
  56. border-right: solid 1px #e0e0e0 ;
  57. }
  58. }
  59. }
  60. #user {
  61. color: $color1 ;
  62. float: right ;
  63. padding: 10px ;
  64. }
  65. }
  66. .container {
  67. padding: 0px ;
  68. background-color: white ;
  69. min-height: 500px ;
  70. border-left: solid 1px #e0e0e0 ;
  71. border-right: solid 1px #e0e0e0 ;
  72. }
  73. #content {
  74. padding: 0px 20px 20px 20px ;
  75. }
  76. }
  77. #footer {
  78. background-color: $color1 ;
  79. height: 100px ;
  80. .container {
  81. padding: 0px ;
  82. .overflow {
  83. height: 30px ;
  84. background-color: white ;
  85. border-left: solid 1px #e0e0e0 ;
  86. border-right: solid 1px #e0e0e0 ;
  87. border-bottom: solid 1px #e0e0e0 ;
  88. }
  89. .content {
  90. padding-top: 20px ;
  91. color: white ;
  92. a {
  93. color: white ;
  94. text-decoration: underline ;
  95. }
  96. }
  97. }
  98. }