Advertisement
Rofihimam

Untitled

Oct 23rd, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.15 KB | None | 0 0
  1. body{
  2.     background-color: #80bfff;
  3. }
  4. h1{
  5.     font-family: 'Bree Serif', serif;
  6.     font-size: 40px;
  7.     text-align: center;
  8.     color: #660066;
  9.     text-shadow: 5px 5px 5px #ff0066;
  10. }
  11. table{
  12.     background: linear-gradient(to left, #660066 20%, #ff0066 100%);
  13. }
  14. td{
  15.     font-family: 'Bree Serif', serif;
  16.     font-size: 18px;
  17.     border-style: inset;
  18.     border-width: 2px;
  19.     border-radius: 10px;
  20. }
  21. input.isi{
  22.     border: 2px inset black;
  23.     background-color: silver;
  24.     font-family: 'Bree Serif', serif;
  25.     font-size: 15px;
  26.     border-radius: 50px;
  27.     text-align: center;
  28.     width: 250px;
  29. }
  30. select{
  31.     border: 2px inset black;
  32.     background-color: silver;
  33.     font-family: 'Bree Serif', serif;
  34.     font-size: 15px;
  35.     border-radius: 50px;
  36.     text-align: center;
  37.     width: 100px;
  38. }
  39. input.button{
  40.     border: 3px outset black;
  41.     background-color: silver;
  42.     font-family: 'Bree Serif', serif;
  43.     transition-duration: 0.5s;
  44.     font-size: 18px;
  45.     border-radius: 50px;
  46.     width: 100px;
  47. }
  48. input.button:hover{
  49.     border: 3px outset blue;
  50.     background: linear-gradient(to right, #660066 20%, #ff0066 100%);
  51.     font-family: 'Bree Serif', serif;
  52.     font-size: 18px;
  53.     border-radius: 50px;
  54.     color: white;
  55.     width: 100px;
  56. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement