Advertisement
Guest User

Untitled

a guest
Jan 13th, 2013
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. #fakeTable{
  2. width:1000px;
  3. }
  4.  
  5. #fakeTable li{
  6. list-style-type:none; //no bullets etc
  7. margin:0;
  8. padding:0;
  9. display:block;
  10. float:left;
  11. clear:none;
  12. width:300px;
  13. height:500px;
  14. padding:0 11px 0 11px;
  15. }
  16.  
  17. h1
  18. {
  19. font-family:"Georgia", serif;
  20. font-size:18px;
  21. font-weight:bold;
  22. text-align:center;
  23. color:#404040;
  24. }
  25.  
  26. #price
  27. {
  28. font-family:"Arial", serif;
  29. font-size:18px;
  30. font-weight:bold;
  31. text-align:left;
  32. color:#4040F0;
  33. }
  34.  
  35. .button {
  36. text-align:right;
  37. background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffec64), color-stop(1, #ffab23) );
  38. background:-moz-linear-gradient( center top, #ffec64 5%, #ffab23 100% );
  39. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23');
  40. background-color:#ffec64;
  41. -moz-border-radius:6px;
  42. -webkit-border-radius:6px;
  43. border-radius:6px;
  44. display: inline-block;
  45. border:2px solid #ffaa22;
  46. color:#333333;
  47. font-family:arial;
  48. font-size:18px;
  49. font-weight:bold;
  50. padding:7px 7px;
  51. text-decoration:none;
  52. }.button:hover {
  53. background:-webkit-gradient( linear, left top, left bottom, color-stop(0.05, #ffab23), color-stop(1, #ffec64) );
  54. background:-moz-linear-gradient( center top, #ffab23 5%, #ffec64 100% );
  55. filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffab23', endColorstr='#ffec64');
  56. background-color:#ffab23;
  57. }.button:active {
  58. position:relative;
  59. top:1px;
  60. }
  61.  
  62. img {
  63. height: 250px; width:250;
  64. margin-left:auto;
  65. margin-right:auto;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement