Advertisement
foomthemes

updates 1.0 css

Mar 28th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <style>
  2. /*~colors/font/widths~*/
  3. .updatesbyfoom {
  4. width: 100px; /* width of the updates tab */
  5. background: black; /* background color of the updates tab */
  6. font-family: "Calibri"; /* the font of the thing */
  7. font-size: 10px; /* font size of the updates TEXT (not the updates title) */
  8. height: 11px; /* should be the same number as the TITLES font size */
  9. }
  10.  
  11. .updatesbyfoom .ubftitle {
  12. font-size: 11px; /* font size of the TITLE */
  13. font-weight: bold; /* just delete this whole line if u dont want it bold */
  14. letter-spacing:2px; /* letter spacing */
  15. color: white; /* color */
  16. font-family: inherit; /* if u want a different font just replace inherit with the name of the font */
  17. }
  18.  
  19. .updatesbyfoom:hover .ubftitle {
  20. background: rgba(0,0,0,0.5); /* updates title color on hover (it doesnt have to be rgba, it can just be a color name like black, blue, red, etc. or it can be a hex code) */
  21. }
  22.  
  23. .updatesbyfoom {
  24. padding: 10px;
  25. overflow: hidden;
  26. position: fixed;
  27. z-index: 3000000;
  28. top: 0;
  29. -webkit-transition: all 1s ease;
  30. -moz-transition: all 1s ease;
  31. -ms-transition: all 1s ease;
  32. -o-transition: all 1s ease;
  33. transition: all 1s ease;
  34. left:10px;
  35. }
  36.  
  37. .updatesbyfoom .ubftitle {
  38. text-align: center;
  39. padding: 10px;
  40. margin: -10px;
  41. margin-bottom: 5px;
  42. -webkit-transition: all 1s ease;
  43. -moz-transition: all 1s ease;
  44. -ms-transition: all 1s ease;
  45. -o-transition: all 1s ease;
  46. transition: all 1s ease;
  47. }
  48.  
  49. .updatesbyfoom:hover {
  50. background: transparent;
  51. opacity: 1;
  52. height: 100%;
  53. }
  54. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement