rorytastic

square hover links 02

Feb 14th, 2014
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. #links {
  2. position:absolute;
  3. letter-spacing:1px;
  4. position:fixed;
  5. font-family:times;
  6. width:180px;
  7. margin-top:28px;
  8. opacity:0;
  9. margin-left:30px;
  10. font-size:12px;
  11. text-transform:lowercase;
  12. text-align:center;
  13. line-height:170%;
  14. -moz-transition-duration:.4s;
  15. -webkit-transition-duration:.4s;
  16. -o-transition-duration:.4s;
  17. }
  18.  
  19.  
  20.  
  21.  
  22. #links a {
  23. display:inline-block;
  24. border: double #dedede;
  25. background:#fefefe;
  26. -moz-border-radius:100%;
  27. -webkit-border-radius:100%;
  28. border-radius:0%;
  29. height:10px;
  30. width:10px;
  31. letter-spacing:0px;
  32. text-transform:uppercase;
  33. transition-duration: 0.7s;
  34. -moz-transition-duration: 0.7s;
  35. -webkit-transition-duration: 0.7s;
  36. -o-transition-duration: 0.7s;
  37. }
  38.  
  39.  
  40.  
  41. #links a:hover {
  42. text-align:center;
  43. background-color:#f6f6f6;
  44. color: #fff;
  45. padding:0px;
  46. width:10px;
  47. -moz-transition-duration:.5s;
  48. -webkit-transition-duration:.5s;
  49. -o-transition-duration:.5s;
  50. }
  51. #sidebar:hover #links{
  52. opacity:1;
  53. -moz-transition-duration:1.4s;
  54. -webkit-transition-duration:1.4s;
  55. -o-transition-duration:1.4s;
  56.  
  57. }
  58.  
  59. #s-m-t-tooltip{
  60. /* basic */
  61. max-width:300px;
  62. z-index:10;
  63. margin:24px 14px 7px 12px;
  64. /* style and design */
  65. padding:2px;
  66. background:#222; /* fallback if rgba not supported */
  67. background:rgba(0,0,0,0.8);
  68. font-size:11px;
  69. color:#fff;
  70. }
Advertisement
Add Comment
Please, Sign In to add comment