Advertisement
altair

GOC335 layout.css

Apr 2nd, 2011
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.62 KB | None | 0 0
  1. /* Common HTML elements and general constructs */
  2. body {
  3.     font-family: Segoe UI, Arial, Helvetica, sans-serif;
  4.     font-size: medium;
  5.     background-color: #ceddee;
  6.     color: #000;
  7.     margin: 0;
  8.     padding: 0;
  9. }
  10. img {
  11.     border: none;
  12. }
  13. a:link {
  14.     color: #3b79bd;
  15. }
  16. a:visited {
  17.     color: #22466e;
  18. }
  19. a:link:hover, a:visited:hover {
  20.     color: #1578ff;
  21. }
  22. strong, .strong {
  23.     font-weight: bold;
  24. }
  25. small .small {
  26.     font-size: 70%;
  27. }
  28. code, .code {
  29.     font-family: Consolas, Courier New, Courier, monospace;
  30.     font-size: 100%;
  31. }
  32. .l {
  33.     text-align: left !important;
  34. }
  35. .r {
  36.     text-align: right !important;
  37. }
  38. .c {
  39.     text-align: center !important;
  40. }
  41. .j {
  42.     text-align: justify !important;
  43. }
  44. .nobr {
  45.     white-space: nowrap;
  46. }
  47. h1 {
  48.     font-size: 160%;
  49.     font-weight: normal !important;
  50. }
  51. h2 {
  52.     font-size: 150%;
  53.     font-weight: normal;
  54. }
  55. h1#title {
  56.     margin: -22px -22px 25px -22px;
  57.     padding: .1ex .5ex;
  58. }
  59.  
  60.  
  61. /* Main wireframe styling */
  62. #header {
  63.     background-color: #fff;
  64.     padding: 0 50px;
  65. }
  66. #header .inner {
  67.     margin: 0 auto;
  68.     padding: 25px 0;
  69.     max-width: 1200px;
  70. }
  71. #body {
  72.     padding: 25px 50px 15px 50px;
  73.     margin: 0 auto;
  74.     max-width: 1200px;
  75. }
  76. #menu {
  77.     width: 260px;
  78.     float: left;
  79. }
  80. #menu dt {
  81.     font-weight: bold;
  82. }
  83. #menu dd {
  84.     font-size: 80%;
  85. }
  86. #main {
  87.     margin-left: 275px;
  88. }
  89. #main .inner {
  90.     width: 100%;
  91.     float: right;
  92.     font-size: 90%;
  93. }
  94. #main #pagebox {
  95.     padding: 25px;
  96. }
  97. #footer {
  98.     clear: both;
  99.     padding: 10px 50px 25px 50px;
  100.     margin: 0 auto;
  101.     max-width: 1200px;
  102.     font-size: 70%;
  103.     text-transform: uppercase;
  104.     color: #3b79bd;
  105. }
  106. #footer span {
  107.     background-image: url(Images/SquareBlue.png);
  108.     background-position: left center;
  109.     background-repeat: no-repeat;
  110.     padding: 0 4px 0 12px;
  111. }
  112.  
  113. /* Menu styling */
  114. #menu ul {
  115.     margin: 0;
  116.     padding: 0;
  117. }
  118. #menu ul li {
  119.     margin-left: 12px;
  120.     padding: 0;
  121.     list-style-image: url(Images/SquareBlue.png);
  122. }
  123.  
  124. /* Attendee list */
  125. table.attendeelist {
  126.     border: none;
  127.     border-collapse: collapse;
  128. }
  129. table.attendeelist th {
  130.     border: none;
  131.     width: 50px;
  132.     height: 50px;
  133.     padding: 0 1ex 1ex 0;
  134. }
  135. table.attendeelist th img {
  136.     display: block;
  137. }
  138. table.attendeelist td {
  139.     border: none;
  140.     vertical-align: top;
  141. }
  142.  
  143. /* Event registration */
  144. .eventreg {
  145.     background-color: #ceddee;
  146.     padding: 2ex;
  147.     border: 1px solid #3b79bd;
  148.     margin-top: 1em;
  149. }
  150. .eventreg h2 {
  151.     color: #3b79bd;
  152.     margin: 0 0 1ex 0;
  153. }
  154. .eventreg p.buttons {
  155.     margin-bottom: 0;
  156. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement