Advertisement
Guest User

stylesheet_1.css

a guest
Mar 28th, 2015
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.08 KB | None | 0 0
  1.  
  2. #blue {
  3.         width: 100px;
  4.         height: 100px;
  5.         border: 2px solid;
  6.         line-height: 90px;
  7.         background-color: #61A1D6;
  8.         box-shadow: 5px 5px 15px blue;
  9.         border-radius: 10px;
  10.         text-align: center;
  11.         margin-left: 10px;
  12.         display: inline-block;
  13.         margin-left: 10px;
  14.        
  15. }
  16.  
  17. #green {
  18.         width: 100px;
  19.         height: 100px;
  20.         border: 2px solid;
  21.         background-color: #99ff45;
  22.         box-shadow: 5px 5px 15px green;
  23.         border-radius: 10px;
  24.         text-align: center;
  25.         line-height: 90px;
  26.         margin-left: 10px;
  27.         display: inline-block;
  28. }
  29.  
  30. #red {
  31.         width: 100px;
  32.         height: 100px;
  33.         border: 2px solid;
  34.         background-color: #ff5534;
  35.         box-shadow: 5px 5px 15px red;
  36.         border-radius: 10px;
  37.         line-height: 90px;
  38.         text-align: center;
  39.         margin-left: 10px;
  40.         display: inline-block;
  41. }
  42.  
  43. div#blue:hover {
  44.         background-color: blue;
  45. }
  46. div#green:hover{
  47.         background-color:green;
  48. }
  49. div#red:hover{
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement