Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #updatestab {
- position:fixed;
- margin-top:15px;
- margin-left:20px;
- width:120px;
- z-index:999999;
- }
- #box1 {
- background:#bad1e7; /*color of tab 1: use colorpicker.com to choose a different color*/
- color:transparent;
- height:10px;
- width:15px;
- border-radius:2px;
- text-align:center;
- overflow:hidden;
- font-size:8px;
- margin-bottom:8px;
- -webkit-transition:all 0.5s ease-in-out;
- -moz-transition:all 0.5s ease-in-out;
- transition:all 0.5s ease-in-out
- }
- #box1:hover {
- width:120px;
- height:190px;
- color:#333333;
- background:inherit;
- }
- #box2 {
- background:#bad1e7;/*color of tab 2: use colorpicker.com to choose a different color*/
- color:transparent;
- height:10px;
- width:15px;
- border-radius:2px;
- text-align:center;
- overflow:hidden;
- font-size:8px;
- margin-bottom:8px;
- -webkit-transition:all 0.5s ease-in-out;
- -moz-transition:all 0.5s ease-in-out;
- transition:all 0.5s ease-in-out
- }
- #box2:hover {
- width:120px;
- height:190px;
- color:#333333;
- background:inherit;
- }
- #box3 {
- background:#bad1e7;/*color of tab 3: use colorpicker.com to choose a different color*/
- color:transparent;
- height:10px;
- width:15px;
- border-radius:2px;
- text-align:center;
- overflow:hidden;
- font-size:8px;
- margin-bottom:8px;
- -webkit-transition:all 0.5s ease-in-out;
- -moz-transition:all 0.5s ease-in-out;
- transition:all 0.5s ease-in-out;
- }
- #box3:hover {
- width:120px;
- height:190px;
- color:#333333;
- background:inherit;
- }
- #box4 {
- background:#bad1e7;/*color of tab 4: use colorpicker.com to choose a different color*/
- color:transparent;
- height:10px;
- width:15px;
- border-radius:2px;
- text-align:center;
- overflow:hidden;
- font-size:8px;
- margin-bottom:8px;
- -webkit-transition:all 0.5s ease-in-out;
- -moz-transition:all 0.5s ease-in-out;
- transition:all 0.5s ease-in-out
- }
- #box4:hover {
- width:120px;
- height:190px;
- color:#333333;
- background:inherit;
- }
- #box5 {
- background:#bad1e7;/*color of tab 5: use colorpicker.com to choose a different color*/
- color:transparent;
- height:10px;
- width:15px;
- border-radius:2px;
- text-align:center;
- overflow:hidden;
- font-size:8px;
- margin-bottom:8px;
- -webkit-transition:all 0.5s ease-in-out;
- -moz-transition:all 0.5s ease-in-out;
- transition:all 0.5s ease-in-out;
- }
- #box5:hover {
- width:120px;
- height:190px;
- color:#333333;
- background:inherit;
- }
- /*to add more tabs, copy and paste both of the #box5 bits above and change the numbers from 5 to 6. then in your html (the bit under <body>) add the following under the end of the code for box 5:
- <div id="box6">
- write your updates here!
- </div>
- */
Advertisement
Add Comment
Please, Sign In to add comment