Advertisement
Rofihimam

Untitled

Sep 23rd, 2019
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. table.hasil{
  2.     font-family: 'Bree Serif', serif;
  3.     font-size: 20px;
  4.     border: 5px outset blue;
  5.     background: linear-gradient(to bottom, #33ccff 0%, #ff3399 100%);
  6.     }
  7. table{
  8.     border: 5px outset blue;
  9.     background: linear-gradient(to bottom, #33ccff 0%, #ff3399 100%);
  10. }
  11. th{
  12.     font-family: 'Bree Serif', serif;
  13.     font-size: 30px;
  14. }
  15. td{
  16.     font-family: 'Bree Serif', serif;
  17.     font-size: 20px;
  18. }
  19. input, select, textarea{
  20.     border: 2px inset black;
  21.     background-color: silver;
  22.     font-family: 'Bree Serif', serif;
  23.     font-size: 15px;
  24. }
  25. input#button{
  26.     border: 3px outset blue;
  27.     background-color: silver;
  28.     font-family: 'Bree Serif', serif;
  29.     transition-duration: 0.5s;
  30.     font-size: 15px;
  31. }
  32. input#button:hover{
  33.     border: 3px outset blue;
  34.     background: linear-gradient(to bottom, #33ccff 0%, #ff3399 100%);
  35.     font-family: 'Bree Serif', serif;
  36.     font-size: 20px;
  37. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement