Advertisement
teuwoo

SCRIPT TWO - ABOVE {CustomCSS}

Apr 25th, 2014
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1.  
  2. #linksis {
  3. font-family:calibri;
  4. font-size:10px;
  5. text-align:center;
  6. text-transform:uppercase;-webkit-transition: all 0.6s ease-in-out;
  7. -moz-transition: all 0.6s ease-in-out;
  8. -o-transition: all 0.6s ease-in-out;
  9. -ms-transition: all 0.6s ease-in-out;
  10. -transition: all 0.6s ease-in-out;
  11. }
  12.  
  13.  
  14. #linksis a {
  15. display:inline-block;
  16. width:200px;
  17. padding:5px 5px 0px 0px;
  18. height:15px;
  19. background-color:#ffffff;margin-bottom:2px;
  20. color:#5a5a5a;-webkit-transition: all 0.6s ease-in-out;
  21. -moz-transition: all 0.6s ease-in-out;
  22. -o-transition: all 0.6s ease-in-out;
  23. -ms-transition: all 0.6s ease-in-out;
  24. -transition: all 0.6s ease-in-out;
  25. border:1px dotted #ededed;
  26. }
  27.  
  28.  
  29. #linksis a:hover{
  30. background-color:#ededed;
  31. color:#ffffff;
  32. -webkit-transition: all 0.6s ease-in-out;
  33. -moz-transition: all 0.6s ease-in-out;
  34. -o-transition: all 0.6s ease-in-out;
  35. -ms-transition: all 0.6s ease-in-out;
  36. -transition: all 0.6s ease-in-out;
  37. }
  38.  
  39.  
  40.  
  41.  
  42. #fade { /*--Transparent background layer--*/
  43. display: none; /*--hidden by default--*/
  44. background: #ffffff;
  45. position: fixed; left: 0; top: 0;
  46. width: 100%; height: 100%;
  47. opacity: 1;
  48. z-index: 9999;
  49. }
  50. .popup_block{
  51. display: none; /*--hidden by default--*/
  52. background: #fefefe;
  53. padding: 10px;
  54. float: left;
  55. font-size: 10;
  56. position: fixed;
  57. top: 50%; left: 50%;
  58. z-index: 99999;
  59. box-shadow: 5px 5px 0px #FFF3F0;
  60. }
  61. img.btn_close {
  62. float: right;
  63. margin: -20 -20px 0 0;
  64. }
  65. /*--Making IE6 Understand Fixed Positioning--*/
  66. *html #fade {
  67. position: absolute;
  68. }
  69. *html .popup_block {
  70. position: absolute;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement