Advertisement
ak47suk1

stynxcss

Nov 23rd, 2010
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.59 KB | None | 0 0
  1. body {
  2.    text-align: justify;
  3.    background-color: #e8e8e8;
  4. }
  5.  
  6. p {
  7.    font-family:  sansation_regular;
  8. }
  9.  
  10. .date {
  11.    font-family:  sansation_bold;
  12. }
  13. #main {
  14. background-color: cacaca;
  15. -moz-border-radius: 15px;
  16. border-radius: 15px;
  17. padding : 14px
  18.  
  19. }
  20.  
  21. .lain {
  22. font-family: Sansation_Regular;
  23. }
  24.  
  25. @font-face {
  26.     font-family: Sansation_Bold;
  27.     src: url('Sansation_Bold.ttf');
  28. }
  29.  
  30. @font-face {
  31.     font-family: nevis;
  32.     src: url('nevis.ttf');
  33.    
  34. }
  35.  
  36.  
  37. @font-face {
  38.     font-family: Sansation_Light;
  39.     src: url('Sansation_Light.ttf');
  40. }
  41.  
  42. @font-face {
  43.     font-family: Sansation_Regular;
  44.     src: url('Sansation_Regular.ttf');
  45. }
  46.  
  47.  
  48. a {
  49.    margin-bottom: 5px;
  50.    color:  #162b06;
  51.    text-decoration: none;
  52. }
  53.  
  54. a:hover {
  55.    text-decoration:  none;
  56.    font-family: sansation_bold;
  57. }
  58.  
  59. h1{
  60.     color: #212121;
  61.     font-size: 6em;
  62.     text-align: center;
  63.     font-family: Sansation_Bold;
  64.    
  65. }
  66.  
  67. h2 {
  68.    color:  #212121;
  69.    line-height:  1.3em;
  70.    font-family: Sansation_Regular;
  71.    background-color: #ffde00;
  72.    padding-left: 6px;
  73.    margin-right: auto;
  74. display:inline-block;
  75. }
  76.  
  77. h3 {
  78.    border-bottom:  1px dashed #c1c1c1;
  79.    padding-bottom:  15px;
  80.    margin-bottom: 15px;
  81.    font-family: nevis;
  82. }
  83.  
  84.  
  85. ul li a {
  86.    color: black;
  87.    text-decoration: none;
  88.    line-height: 1.6em;
  89. }
  90.  
  91.  
  92. /* MAIN CONTAINER */
  93.  
  94. .container_12 {
  95.    padding-bottom: 25px;
  96.    overflow: hidden;
  97. }
  98.  
  99. /* HEADER */
  100.  
  101. #header {
  102.    background: url(../img/headerBG.png) no-repeat;
  103.    margin-bottom: 25px;
  104. }
  105.  
  106.    
  107.  
  108. /* NAV */
  109.    
  110. #top_navigation {
  111. background : transparent;
  112. width: 800px;
  113. height : 40px;
  114. list-style : none;
  115. margin-top : 10px;
  116. margin-bottom : 0px;
  117. width : 100%;
  118. }
  119. ul.nav {
  120. background : transparent;
  121. width: 800px;
  122. height : 3px;
  123. line-height : 32px;
  124. list-style : none;
  125. padding : 0 0px;
  126. font-size : 14px;
  127. font-family: nevis;
  128. }
  129. ul.nav li {
  130. display : inline;
  131. padding : 0;
  132. background : transparent;
  133. }
  134. ul.nav a {
  135. background : transparent;
  136. height : 30px;
  137. font-size : 16px;
  138. color : #111;
  139.  
  140. padding : 11px 16px 11px 16px;
  141. text-decoration : none;
  142. border-top: 1px solid transparent;
  143. border-bottom : 4px solid transparent;
  144. border-left : 1px solid transparent;
  145. border-right : 1px solid transparent;
  146. border-radius : 4px;
  147. -moz-border-radius : 4px;
  148. -webkit-border-radius: 4px;
  149. }
  150. ul.nav a:hover {
  151. background : #252525;
  152. border-top : 1px solid #252525;
  153. border-bottom : 4px solid #000;
  154. border-left : 1px solid #252525;
  155. border-right : 1px solid #252525;
  156. color : #FFF;
  157. padding : 11px 16px 11px 16px;
  158. border-radius : 4px;
  159. -moz-border-radius : 4px;
  160. -webkit-border-radius: 4px;
  161. }
  162.  
  163.  
  164. /* FOOTER */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement