sexycullen

theme 221 css part

Dec 23rd, 2020 (edited)
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.69 KB | None | 0 0
  1. /* maziekeen's theme 221 - UPDATE TAB CSS PART
  2. accordion (update toggle) by codepen.io/vinsongrant/pen/qbGKed
  3.  
  4. GUIDE HOW TO CUSTOMIZE
  5.  
  6.  
  7. ----------------------------
  8.  
  9. ALL THE COLORS
  10.  
  11.  
  12. - GENERAL COLOR
  13. body text, italic, bold, links: will match your color theme
  14.  
  15. - UPDATE TITLE
  16. find the class name: .update-option, .update-title label a {
  17. add styles you want there
  18.  
  19. - EFFECT ON THE TITLE ONCE YOU CLICKED
  20. find the class name: .update-toggle:checked + .update-title, .update-toggle:checked + .update-title a {
  21. add styles you want there
  22.  
  23. - BACKGROUND COLOR OF THE CONTENT
  24. find the class name: .update-toggle:checked + .update-title + .update-content {
  25. change the color in: background:#ffffff;
  26. *to change the text color inside, just add a style: color:#111111;
  27.  
  28. - BORDERS
  29. find the classes names: .update-toggle:checked + .update-title + .update-content {
  30. AND .update-button {
  31. change the color in: outline:1px solid #ededed;
  32.  
  33. - BOX SHADOW
  34. find the classes names: .update-toggle:checked + .update-title + .update-content {
  35. AND .update-button {
  36.  
  37.  
  38.  
  39. maziekeen's theme 221 - UPDATE TAB CSS PART */
  40.  
  41.  
  42. .update {
  43. position:fixed;
  44. width: 65px;
  45. top:50px;
  46. left: 15px;
  47. z-index:1;
  48. }
  49.  
  50. .update-content {
  51. height:100%;
  52. max-width: 320px;
  53. min-width: 67px;
  54. position:fixed;
  55. z-index:11;
  56. background:transparent;
  57. -webkit-box-sizing: border-box;
  58. box-sizing: border-box;
  59. }
  60.  
  61. .update-content a {
  62. margin:0 0 10px;
  63. }
  64.  
  65. .update-content .toggle-link,
  66. .update-content .toggle-link-button {
  67. width: 65px;
  68. display:block;
  69. text-align:center;
  70. }
  71.  
  72.  
  73. .toggle-link .update-icon,
  74. .toggle-link-button .update-icon {
  75. width: 14px;
  76. height: 14px;
  77. padding: 10px;
  78. cursor:pointer;
  79. border:none;
  80. text-align:center;
  81. font-weight:bold;
  82. border-radius:4px;
  83. background-color: #ffffff;
  84. border: 1px solid #ededed;
  85. }
  86.  
  87.  
  88. .toggle-link .feather,
  89. .toggle-link .feather .toggle-link-button {
  90. width: 14px;
  91. height: 14px;
  92. stroke: #222222;
  93. }
  94.  
  95. .update-content .toggle-content {
  96. display:none;
  97. margin: 0 0 10px;
  98. padding:10px;
  99. max-height: 300px;
  100. overflow-y: auto;
  101. border-radius:4px;
  102. background-color:#ffffff;
  103. border: 1px solid #ededed;
  104. }
  105.  
  106. .update-content .toggle-content div {
  107. margin: 3px auto;
  108. }
  109.  
  110. .update-content li {
  111. text-align:left;
  112. }
  113.  
  114. .update-content li a {
  115. margin-bottom:2px;
  116. color:inherit;
  117. }
Add Comment
Please, Sign In to add comment