Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. .button {background-color: #008CBA;} /* Biru */
  2. body{
  3. background: #ccffe4;
  4. font-family: sans-serif;
  5. }
  6. fieldset {
  7. border: 1px solid #DDDDDD;
  8. display: inline-block;
  9. font-size: 14px;
  10. padding: 1em 2em;
  11. }
  12.  
  13. legend {
  14. background: #ff6666; /* Green */
  15. color: #000000; /* White */
  16. margin-bottom: 10px;
  17. padding: 0.5em 1em;
  18. }
  19. .table{
  20. width: 700px;
  21. margin: auto;
  22. }
  23. h1{
  24. text-align: center;
  25. color: #000000;
  26. }
  27. .container{
  28. width: 400px;
  29. margin: auto;
  30. }
  31. .zebra-table {
  32. width: 100%;
  33. border-collapse: collapse;
  34. box-shadow: 0 2px 3px 1px #00ffd5;
  35. overflow: hidden;
  36. border:8px solid #00ffd5;
  37. }
  38. .zebra-table th,.zebra-table td{
  39. vertical-align: top;
  40. padding:15px 15px;
  41. text-align: left;
  42. margin:0;
  43. }
  44. .zebra-table tbody tr:nth-child(odd) { /* Make table like zebra */
  45. background:#00ffd5;
  46. }/* End CSS for Zebra Table in index.html */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement