Advertisement
bldamalla

design.css

Jul 28th, 2014
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.90 KB | None | 0 0
  1. /**
  2.  
  3. ***This will be the design for the elements of helloworld.html
  4.  
  5. **/
  6.  
  7. #mainContent
  8. {
  9.     margin: 0px 50px 0px 50px;
  10.     border: 2px solid #7777FF;
  11.     border-radius: 10px;
  12.     padding: 10px 0px 10px 0px;
  13.     text-align: center;
  14.     font-family: Verdana, sans-serif;
  15.     font-size: xx-large;
  16.     transition: all 0.3s ease;
  17.     -webkit-transition: all 0.3s ease;
  18. }
  19.  
  20. #mainContent:hover
  21. {
  22.     opacity: 1;
  23.     transition: all .3s ease;
  24.     -webkit-transition: all .3s ease;
  25. }
  26.  
  27. #clickButton
  28. {
  29.     border: 5px solid #FFFFAA;
  30.     border-radius: 5px;
  31.     background-color: #FFFFCC;
  32.     width: 100px;
  33.     height: 30px;
  34.     opacity: 0.8;
  35.     transition: all .3s ease;
  36.     -webkit-transition: all .3s ease 0.1s;
  37. }
  38.  
  39. #clickButton:hover
  40. {
  41.     cursor: pointer;
  42.     width: 150px;
  43.     opacity: 1;
  44.     transition: all .3s ease;
  45.     -webkit-transition: all .3s ease;
  46. }
  47.  
  48. #commentText
  49. {
  50.     text-align: right;
  51.     font-family: Arial, sans-serif;
  52.     font-size: xx-medium;  
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement