Guest User

Untitled

a guest
Oct 16th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. /**
  2. * table example box-shadow
  3. */
  4. body {
  5. background-color: #d9ddcf;
  6. font-family: Arial, helvetica, sans-serif;
  7. }
  8. table {
  9. margin: 100px auto;
  10. border-collapse: collapse;
  11. }
  12. tr {
  13. overflow: hidden;
  14. }
  15. td {
  16. text-align: center;
  17. height: 42px;
  18. }
  19. tbody td {
  20. border-bottom: 1px solid #c7c7c7;
  21. }
  22. thead td.tariff {
  23. border-radius: 10px 10px 0 0;
  24. }
  25. tfoot td.tariff {
  26. border-radius: 0 0 10px 10px;
  27. }
  28. td.title {
  29. width: 142px;
  30. padding-right: 42px;
  31. text-align: right;
  32. text-transform: uppercase;
  33. }
  34. td.tariff {
  35. width: 214px;
  36. background-color: #fff;
  37. box-shadow: 0px 0 7px 0px #bbb;
  38. }
  39. tbody td.title,
  40. tbody td.space {
  41. border-bottom-style: dashed;
  42. }
  43. td.space {
  44. width: 14px;
  45. }
Add Comment
Please, Sign In to add comment