custom.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. /*
  2. _______________________________
  3. Desktop version layout - place your custom code here */
  4. body {
  5. }
  6. .pageBackground {
  7. background-image:url(images/backgroundTexture.png);
  8. background-repeat:repeat;
  9. }
  10. .topNavBar {
  11. background-color: black;
  12. color: #999;
  13. font-family: Consolas,monospace, "Courier New";
  14. font-size: 0.8em;
  15. text-align:right;
  16. line-height:1.6em;
  17. }
  18. .pageForeground {
  19. background-color: whiteSmoke;
  20. border-radius:7px;
  21. moz-border-radius:7px;
  22. -moz-box-shadow: 0 0 5px 5px #888;
  23. -webkit-box-shadow: 0 0 5px 5px#888;
  24. box-shadow: 0 0 5px 5px #888;
  25. background-image:url(images/foregroundTexture.png);
  26. }
  27. .siteBanner {
  28. background-image:url(images/oncrashrebootbanner.jpg);
  29. background-repeat:no-repeat;
  30. background-size:cover;
  31. display:block;
  32. padding-left: 2em;
  33. padding-top: 2em;
  34. padding-bottom: 2em;
  35. }
  36. a.siteBanner:hover{
  37. text-decoration:none;
  38. }
  39. #siteTitle{
  40. font-family:Consolas, monospace, "Courier New";
  41. font-size:3.0em;
  42. margin:0 0 0 0;
  43. }
  44. #siteTagline {
  45. font-family:"Palatino Linotype", "MS Serif", "Times New Roman";
  46. color:black;
  47. font-style: italic;
  48. margin: 0em 0px 0em 0px;
  49. font-size: 1.5em;
  50. font-weight: normal;
  51. }
  52. .hmenu {
  53. background-color: #141414;
  54. text-align: center;
  55. color: #999;
  56. padding-top: 0.5em;
  57. padding-bottom: 0.5em;
  58. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  59. font-size: 1.1em;
  60. }
  61. .post {
  62. font-family: Georgia, "DejaVu Serif", Times, "Times New Roman", serif;
  63. font-size: 1.0em;
  64. line-height: 1.5em;
  65. color: #111;
  66. text-align: justify;
  67. }
  68. /*
  69. _______________________________
  70. Mobile version - preset code from cssgrid.net */
  71. @media handheld, only screen and (max-width: 767px) {
  72. .topNavBar {
  73. text-align:center;
  74. }
  75. .pageForeground {
  76. border-radius:0px;
  77. moz-border-radius:0px;
  78. }
  79. .siteBanner {
  80. margin-top:-16px;
  81. padding-left: 0.2em;
  82. padding-right: 0.2em;
  83. background-position: bottom center;
  84. }
  85. #siteTitle{
  86. font-size:2.3em;
  87. padding-left:0px;
  88. }
  89. .hmenu {
  90. margin-top:-11px;
  91. }
  92. .examplecontainer {}
  93. body {}
  94. }
  95. /*
  96. _______________________________
  97. Provide higher res assets for iPhone 4 - preset code from cssgrid.net */
  98. @media only screen and (-webkit-min-device-pixel-ratio: 2) {
  99. /* An example of how to override an image with one twice the size for iPhone 4. Specify the original pixel size with background-size.
  100. .download {
  101. background: url(../img/downarrow@2x.png) no-repeat;
  102. background-size: 27px 28px;
  103. }
  104. */
  105. }