Advertisement
diazs123

Untitled

Nov 20th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.38 KB | None | 0 0
  1. fieldset{
  2.     width: 852px;
  3.     height: 350px;
  4.     background-image: url(img/Desert.jpg);
  5.     background-position: bottom;
  6.     border-top: 3px dashed grey;
  7.     border-left: 3px dashed indianred;
  8.     border-bottom: 3px dotted salmon;
  9.     border-right: 3px dotted lightgrey;
  10.     margin-left: auto;
  11.     margin-right: auto;
  12.     background-color:rgba(255,255,255,0.8);
  13. }
  14. legend{
  15.     height: 20px;
  16.     color: white;
  17.     background-color: salmon;
  18.     border-top: 2px outset white;
  19.     border-left: 2px outset white;
  20.     border-bottom: 2px outset darkgrey;
  21.     border-right: 2px outset darkgrey;
  22. }
  23. body{
  24.     background-image: url(img/Desert.jpg);
  25.     background-size: 100%;
  26.     font-family: verdana;
  27.     color: yellow;
  28. }
  29. table{
  30.     width: 80%;
  31.     margin-left: auto;
  32.     margin-right: auto;
  33. }
  34.  
  35. select{
  36.     width: 70%;
  37.     height: 30px;
  38.     font-size: 12pt;
  39. }
  40. .rb1{
  41.     background-color: blue;
  42. }
  43. .rb2{
  44.     background-color: indianred;
  45. }
  46. input.button{
  47.     color: white;
  48.     background: salmon;
  49.     border-top: 2px outset white;
  50.     border-left: 2px outset white;
  51.     border-bottom: 2px outset darkgrey;
  52.     border-right: 2px outset darkgrey;
  53.     font-family: calibri, Times, serif;
  54.     font-size: 20px;
  55. }
  56. input.button:hover{
  57.     color: salmon;
  58.     background: lightgrey;
  59.     border: 3px outset grey;
  60.     font-family: cambria, Times, serif;
  61.     font-size: 20px;
  62. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement