elyaszbha

CSS Layout CODE For FrenzyFM

Apr 18th, 2012
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 5.63 KB | None | 0 0
  1. #information_elyaszbha. {
  2. * cascading style sheets layout [css]: ;
  3. * copyright 2012-2013 by elyaszbha: ;
  4. * website: http://flavors.me/elyaszbha;
  5. * updates: april 23, 2012;
  6. * attention: you can alter/edit/copy codes.;
  7. * browser: cross-browser compatibility;
  8. }
  9.  
  10. ///==================================///
  11.            READ ME FIRST.TXT
  12. ///==================================///
  13.  
  14. 1. CODE INI HANYA DIGUNAKAN DALAM PROFILE FRENZYFM.MY SAHAJA.
  15. 2. UNTUK MENGGUNAKAN CODE INI :-
  16.     > DAFTAR DI FRENZYFM.MY (LOGIN GUNA FACEBOOK)
  17.     > KLIK PROFILE (ATAS, KANAN)
  18.     > KLIK CUSTOMIZE PROFILE
  19.     > KLIK CSS (TEMPAT UNTUK PASTE CODE CSS)
  20. 3. BAGI MEMASTIKAN CODE ANDA BERJALAN DENGAN LANCAR, PASTIKAN ANDA HANYA COPY CODE SAHAJA, TANPA COPY NAMA CODE.
  21. 4. SEMOGA BERJAYA.
  22.  
  23.  <!- CODE DISEDIAKAN OLEH GAARA :- http://www.frenzyfm.my/gaara -!>
  24. <!- P/S:- PM saya jika ada soalan atau mengalamai kekeliruan. :) -!>
  25.  
  26. ///====================================///
  27.       CODE BERMULA DIBAWAH INI :)
  28. ///===================================///
  29.  
  30. ========================================
  31. 1. BACKGROUND WITH CURSOR CODE
  32. ========================================
  33.  
  34. body {
  35. background-position: center center;
  36. background-repeat: repeat;
  37. background-attachment: scroll;
  38. background-image: url('URL_BACKGROUND_KORANG');
  39. cursor: url('URL_ANAK_PANAH'), progress !important;
  40. }
  41.  
  42.  
  43. ========================================
  44. 2. CURSOR CODE
  45. ========================================
  46.  
  47. body, a:hover {
  48. cursor: url(URL_ANAK_PANAH), url(URL_ANAK_PANAH), progress !important;
  49. }
  50.  
  51. ========================================
  52. 3. HEADER/BANNER CODE
  53. ========================================
  54.  
  55. #logo {
  56. color: transparent;
  57. height: 200px;
  58. width: 782px;
  59. background: url('URL_BANNER_KORANG') no-repeat;
  60. position: relative;
  61. top: 1px;
  62. left: -189px;
  63. opacity: 0.9;
  64. filter: alpha(opacity=60);
  65. }
  66.  
  67. #logo:hover {
  68. color: transparent;
  69. height: 200px;
  70. width: 782px;
  71. background: url('URL_BANNER_KORANG') no-repeat;
  72. position: relative;
  73. top: 1px;
  74. left: -189px;
  75. opacity: 0.9;
  76. filter: alpha(opacity=60);
  77. }
  78.  
  79. ========================================
  80. 4. TRANSPARENT WALL CODE
  81. ========================================
  82.  
  83. #main_content_block {
  84. width: 1010px;
  85. padding-top: 5px;
  86. margin-left: auto;
  87. margin-right: auto;
  88. -moz-border-radius: 10px;
  89. -webkit-border-radius: 10px;
  90. border-radius: 10px;
  91. behavior: url("/pie.htc");
  92. background: #d4d4d4 url('') repeat-y center top;
  93. border-left: 1px solid white;
  94. border-top: 1px solid white;
  95. border-right: 1px solid white;
  96. border-bottom: 1px solid white;
  97. opacity: 0.9;
  98. filter: alpha(opacity=60);
  99. }
  100.  
  101. ========================================
  102. 5. TRANSPARENT FOOTER CODE
  103. ========================================
  104.  
  105. #top_footer {
  106. background: url('') no-repeat center top;
  107. min-height: 1px;
  108. -moz-border-radius: 10px;
  109. -webkit-border-radius: 10px;
  110. border-radius: 10px;
  111. behavior: url("/pie.htc");
  112. opacity: 0.9;
  113. filter: alpha(opacity=60);
  114. }
  115.  
  116. #footer_holder {
  117. width: 1010px;
  118. margin-left: auto;
  119. margin-right: auto;
  120. -moz-border-radius: 10px;
  121. -webkit-border-radius: 10px;
  122. border-radius: 10px;
  123. behavior: url("/pie.htc");
  124. background: #252525;
  125. overflow: hidden;
  126. border-left: 1px solid #303030;
  127. border-top: 1px solid #4a4a4a;
  128. border-right: 1px solid #303030;
  129. border-bottom: 1px solid #2b2b2b;
  130. opacity: 0.9;
  131. filter: alpha(opacity=60);
  132. }
  133.  
  134. ========================================
  135. 6. TRANSPARENT HEADER NAVIGATION ON TOP (WARNA HIJAU TUH)
  136. ========================================
  137.  
  138. #header_body {
  139. background: white;
  140. opacity: 0.9;
  141. filter: alpha(opacity=60);
  142. }
  143.  
  144. #header_right {
  145. opacity: 0.9;
  146. filter: alpha(opacity=60);
  147. }
  148.  
  149. ========================================
  150. 7. HOVER IMAGE EFFECT (STYLE 1-Fade In and Fade out)
  151. ========================================
  152.  
  153. img {
  154. filter: progid:dximagetransform.microsoft.alpha(opacity=50);
  155. khtml-opacity: 0.5;
  156. moz-opacity: 0.5;
  157. opacity: 0.5;
  158. }
  159.  
  160. a:hover img {
  161. filter: progid:dximagetransform.microsoft.alpha(opacity=100);
  162. khtml-opacity: 0.99;
  163. moz-opacity: 0.99;
  164. opacity: 0.99;
  165. }
  166.  
  167. ========================================
  168. 8. HOVER IMAGE EFFECT (STYLE 2-Fade In and Reflect)
  169. ========================================
  170.  
  171. img {
  172. margin: 1px;
  173. opacity: 0.8;
  174. border: 1px solid #eee;
  175. -webkit-transition: all 0.5s ease;
  176. -moz-transition: all 0.5s ease;
  177. -o-transition: all 0.5s ease;
  178. -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.1)));
  179. }
  180.  
  181. img:hover {
  182. opacity: 1;
  183. -webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(.7, transparent), to(rgba(0,0,0,0.4)));
  184. -webkit-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
  185. -moz-box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
  186. box-shadow: 0px 0px 20px rgba(255,255,255,0.8);
  187. }
  188.  
  189. ========================================
  190. 9. HOVER IMAGE EFFECT (STYLE 3-Spinning 360*)
  191. ========================================
  192.  
  193. img {
  194.     margin: 0px;
  195.     border: 2px solid #eee;
  196.     -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  197.     -moz-box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  198.     box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
  199.     -webkit-transition: all 1.5s ease-out;
  200.     -moz-transition: all 1.5s ease;
  201.     -o-transition: all 1.5s ease;
  202. }
  203.  
  204. img:hover {
  205.     -webkit-transform: rotate(-360deg);
  206.     -moz-transform: rotate(-360deg);
  207.     -o-transform: rotate(-360deg);
  208. }
  209.  
  210. ========================================
  211. 10. LINK CODE
  212. ========================================
  213.  
  214. a:link {
  215. text-decoration: none;
  216. color: #8A360F;
  217. }
  218. a:link:hover {
  219. text-decoration: none;
  220. color: #CC7F32;
  221. }
  222. a:visited {
  223. text-decoration: none;
  224. color: #8A360F;
  225. }
  226.  
  227. ========================================
Advertisement
Add Comment
Please, Sign In to add comment