demo.css 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. @import url('reset.css');
  2. /* General Codrops Demo Style */
  3. body{
  4. background:#1F1F1F url(../images/pattern.png) repeat top left;
  5. color:#fff;
  6. font-family: 'PT Sans Narrow', Arial, sans-serif;
  7. font-size:14px;
  8. }
  9. a{
  10. color:#ddd;
  11. text-decoration:none;
  12. }
  13. a:hover{
  14. color:#00c6e3;
  15. }
  16. p.sub{
  17. padding:25px 10px 10px 10px;
  18. text-align:left;
  19. color:#aaa;
  20. }
  21. .clr{
  22. clear:both;
  23. }
  24. h1{
  25. margin:5px;
  26. font-size:24px;
  27. text-align:center;
  28. color:#fff;
  29. font-family:"Pacifico", Georgia, "Times New Roman", serif;
  30. text-shadow:1px 1px 1px #000;
  31. padding-bottom:10px;
  32. line-height:40px;
  33. }
  34. h1 span{
  35. font-size:10px;
  36. display:block;
  37. letter-spacing:2px;
  38. font-family: 'Trebuchet MS', 'Myriad Pro', Arial, sans-serif;
  39. color:#00c6e3;
  40. line-height:14px;
  41. padding-top:10px;
  42. text-shadow:none;
  43. text-transform:uppercase;
  44. }
  45. /* Header Style */
  46. .header{
  47. font-size:13px;
  48. background:#000;
  49. opacity:0.9;
  50. text-transform:uppercase;
  51. -moz-box-shadow: 1px 0px 2px #000;
  52. -webkit-box-shadow: 1px 0px 2px #000;
  53. box-shadow: 1px 0px 2px #000;
  54. }
  55. .header a{
  56. line-height:18px;
  57. padding:0 4px;
  58. letter-spacing:1px;
  59. text-shadow:1px 1px 1px #000;
  60. color:#ddd;
  61. }
  62. .header a:hover{
  63. color:#fff;
  64. }
  65. .header a span{
  66. font-weight:bold;
  67. }
  68. .header span.right_ab{
  69. float:right;
  70. }
  71. .content{
  72. margin:0px 25px 30px 25px;
  73. }
  74. @media screen and (max-width: 640px) {
  75. .header a{
  76. display:block;
  77. text-align:center;
  78. font-size:10px;
  79. text-shadow:none;
  80. }
  81. .header span.right_ab{
  82. float:none;
  83. }
  84. }