Advertisement
Rofihimam

Untitled

Oct 23rd, 2019
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.28 KB | None | 0 0
  1. body{
  2.     background-color: #80bfff;
  3. }
  4. table{
  5.     margin-top: 150px;
  6.     background: linear-gradient(to left, #660066 20%, #ff0066 100%);
  7. }
  8. td{
  9.     font-family: 'Bree Serif', serif;
  10.     font-size: 17px;
  11.     border-style: inset;
  12.     border-width: 2px;
  13.     border-radius: 10px;
  14. }
  15. td.tambah{
  16.     font-size: 20px;
  17.     height: 50px;
  18. }
  19. th{
  20.     font-family: 'Bree Serif', serif;
  21.     font-size: 25px;
  22.     border-style: outset;
  23.     border-width: 2px;
  24.     border-radius: 10px;
  25. }
  26. a{
  27.     text-decoration: none;
  28.     color: white;
  29. }
  30. div.edit{
  31.     background-color: green;
  32.     border-radius: 50px;
  33.     width: 50px;
  34.     text-align: center;
  35.     transition-duration: 0.5s;
  36. }
  37. div.hapus{
  38.     background-color: red;
  39.     border-radius: 50px;
  40.     width: 60px;
  41.     text-align: center;
  42.     transition-duration: 0.5s;
  43. }
  44. div.tambah{
  45.     background-color: blue;
  46.     border-radius: 50px;
  47.     width: 150px;
  48.     text-align: center;
  49.     transition-duration: 0.5s;
  50. }
  51. div.edit:hover{
  52.     background-color: green;
  53.     border-radius: 50px;
  54.     width: 50px;
  55.     text-align: center;
  56.     box-shadow: 1px 5px 2px lightgreen;
  57. }
  58. div.hapus:hover{
  59.     background-color: red;
  60.     border-radius: 50px;
  61.     width: 60px;
  62.     text-align: center;
  63.     box-shadow: 1px 5px 2px pink;
  64. }
  65. div.tambah:hover{
  66.     background-color: blue;
  67.     border-radius: 50px;
  68.     width: 150px;
  69.     text-align: center;
  70.     box-shadow: 1px 5px 2px lightblue;
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement