Advertisement
solitudethemes

updates tab one : css

Sep 17th, 2016
5,466
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. /*
  2.  
  3.  
  4. updates tab @ solitudethemes
  5.  
  6.  
  7. */
  8.  
  9.  
  10. .updates {
  11. color:#8c8a8a; /*updates tab text colour*/
  12. text-align:left; /*left, right or justify*/
  13. height:auto;
  14. max-height:13px; /*don't touch please*/
  15. width:125px; /*width of updates tab*/
  16. padding:4px;
  17. top:30px; /*positioning from the top of the screen*/
  18. left:40px; /*change 'left' to right if you want it on the right*/
  19. padding-left:10px;
  20. border-left:1px solid #eee;
  21. z-index:10;
  22. position:fixed;
  23. overflow:hidden;
  24. -webkit-transition: max-height 1.2s ease-in-out;
  25. -moz-transition: max-height 1.2s ease-in-out;
  26. -o-transition: max-height 1.2s ease-in-out;
  27. transition: max-height 1.2s ease-in-out;
  28. }
  29.  
  30. .updates:hover {
  31. height:auto;
  32. max-height:1000px;
  33. transition: max-height 1.2s ease-in-out;
  34. -webkit-transition: max-height 1.2s ease-in-out;
  35. -moz-transition: max-height 1.2s ease-in-out;
  36. -o-transition: max-height 1.2s ease-in-out;
  37. }
  38.  
  39. .cont {
  40. padding-top:10px;
  41. border-top:1px solid #eee;
  42. }
  43.  
  44. .updates:hover .utitle{
  45. color:#d4ddea; /*colour of updates title after hover*/
  46. transition:0.2s ease-in-out;
  47. -webkit-transition:0.2s ease-in-out;
  48. -moz-transition:0.2s ease-in-out;
  49. -o-transition:0.2s ease-in-out;
  50. }
  51.  
  52. .utitle {
  53. letter-spacing:3px;
  54. font-size:8px;
  55. margin-bottom:10px;
  56. text-transform:uppercase;
  57. color:#aaa;
  58. transition:1.5s ease-out;
  59. -webkit-transition:1.5s ease-in-out;
  60. -moz-transition: 1.5s ease-in-out;
  61. -o-transition: 1.5s ease-in-out;
  62. }
  63.  
  64. .updates blockquote {
  65. border-left:1px solid; /*change 'left' to right*/
  66. border-color:#eeeeee;
  67. padding:5px 10px;
  68. margin:0px 5px;
  69. }
  70.  
  71. .head {
  72. border-bottom:1px solid #d4ddea; /*change #d4ddea to colour you want for the header border*/
  73. font-weight:700
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement