Advertisement
Guest User

css

a guest
Nov 26th, 2012
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.91 KB | None | 0 0
  1.  
  2.  
  3.  
  4. body{
  5.     background: #444;
  6. }
  7.  
  8. h2{
  9.     font: 20px "Arial";
  10.     color: #ef862e;
  11. }
  12.  
  13. section{
  14.     font: 15px "Arial";
  15. }
  16.  
  17. .widget{
  18.     width: 200px;
  19.     height: 100px;
  20.     background-color:#333;
  21.     border-top-right-radius: 2px;
  22.     border-top-left-radius: 2px;
  23.  
  24. }
  25.  
  26. .widget header{
  27.     width: 200px;
  28.     padding: 7px 0 5px 0;
  29. }
  30.  
  31. .widget header h2{
  32.     display: inline;
  33.     margin: 5px;
  34. }
  35.  
  36. .widget header button{
  37.     color: #999;
  38.     float:right;
  39.     background: rgba(0,0,0,0.25);
  40.     border-radius: 2px;
  41.     border:none;
  42.     margin-right: 4px;
  43.     margin-top: 1px;
  44. }
  45.  
  46. .widget header button:hover{
  47.     background: rgba(0,0,0,0.30);
  48.     border: none;
  49.     color: #ef862e
  50. }
  51.  
  52. .widget header button:active{
  53.     background: rgba(0,0,0,0.45);
  54.     border: none;
  55. }
  56.  
  57. .widget .widget-content{
  58.     min-height: 100px;
  59.     background: #999;
  60.     border-bottom-left-radius: 2px;
  61.     border-bottom-right-radius: 2px;
  62.     padding: 8px;
  63. }
  64.  
  65. #divid
  66. {
  67.  position:absolute;
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement