123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. /* ZipcodeWilmington 2015 */
  2. /* ===================================== FONTS ========================================= */
  3. @import url(https://fonts.googleapis.com/css?family=Droid+Sans:400,700);
  4. /* ===================================== GLOBAL STYLE ========================================= */
  5. * {
  6. margin: 0;
  7. padding: 0;
  8. }
  9. body { font: 14px/1.4 arial, sans-serif; background-color: #F5F5F5;);}
  10. article, aside, figure, footer, header, nav, section { display: block; }
  11. a:link, a:visited {
  12. text-decoration: none;
  13. color: inherit;
  14. }
  15. a:hover, a:active {
  16. text-decoration: none;
  17. color: inherit;
  18. }
  19. .group:before,
  20. .group:after {
  21. content:"";
  22. display:table;
  23. }
  24. .group:after {
  25. clear:both;
  26. }
  27. .group {
  28. zoom:1; /* For IE 6/7 (trigger hasLayout) */
  29. }
  30. #main:focus {
  31. outline: none;
  32. }
  33. /* ===================================== HEADER STYLE ========================================= */
  34. .main-header {
  35. width: 100%;
  36. height: 150px;
  37. background-color: #144e64;}
  38. .main-header .title {
  39. float: left;
  40. text-transform: uppercase;
  41. font-family: 'Droid Sans', sans-serif;
  42. font-weight: 400;
  43. font-size: 1em;
  44. width: 55%;
  45. padding-left: 5%;
  46. color: #fff;
  47. position: relative;
  48. top: 50%;
  49. transform: translateY(-50%);
  50. }
  51. .main-header .zip-link {
  52. float: right;
  53. width: 16%;
  54. height: 100%;
  55. background-color: white;
  56. }
  57. .main-header .lesson-link {
  58. float: right;
  59. width: 16%;
  60. height: 100%;
  61. background-color: #3c790a;
  62. }
  63. .main-header div {
  64. /* fix blurriness of children due to them
  65. being placed on half pixels */
  66. -webkit-transform-style: preserve-3d;
  67. -moz-transform-style: preserve-3d;
  68. transform-style: preserve-3d;
  69. }
  70. .main-header div img {
  71. display: block;
  72. margin: auto;
  73. width: 55%;
  74. position: relative;
  75. top: 50%;
  76. transform: translateY(-50%);
  77. }
  78. /* page styles */
  79. article {margin: 5%;}
  80. article p { margin-bottom: 20px;}
  81. section {margin: 5%;}
  82. h1 {font-weight: bold;}
  83. ol {list-style-type: lower-alpha; margin-left:15px}
  84. ol li {margin-bottom: 15px;}
  85. ul li {margin-left: 20px; margin-bottom: 0;}
  86. #result {border: 1px #aaa solid; height: 300px; width:100%; background:#eee; margin-bottom: 15px;}