Advertisement
Guest User

Untitled

a guest
Aug 13th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. <table class="line-items">
  2. <tr class="line-item-header">
  3. <td class="item-summary">
  4. Items
  5. </td>
  6. </tr>
  7. <tr class="line-item">
  8. <td class="item-summary">
  9. @o.Summarize()
  10. </td>
  11. </tr>
  12. <tr class="line-item">
  13. <td class="item-summary">
  14. @o.Summarize()
  15. </td>
  16. </tr>
  17. <tr class="line-item">
  18. <td class="item-summary">
  19. @o.Summarize()
  20. </td>
  21. </tr>
  22. <tr class="line-item">
  23. <td class="item-summary">
  24. @o.Summarize()
  25. </td>
  26. </tr>
  27. </table>​
  28.  
  29. .line-items *
  30. {
  31. border:1px solid black;
  32. }
  33. .line-items
  34. {
  35. border-radius:6px 6px 0 0;
  36. /*overflow:hidden;*/
  37. border:1px solid black;
  38. margin:20px;
  39. width:3in;
  40. }
  41. td
  42. {
  43. padding:5px 10px;
  44. }
  45. .line-item-header
  46. {
  47. background-color:black;
  48. color:white;
  49. font-family:arial black, arial, sans serif;
  50. }
  51. .line-item
  52. {
  53. background-color:white;
  54. }
  55. .line-item:nth-child(odd)
  56. {
  57. background-color:#eee;
  58. }
  59. body
  60. {
  61. background-color:#ffd;
  62. }​
  63.  
  64. td, tr { display: block; }
  65. tr {
  66. border:1px solid black;
  67. border-top: 0;
  68. }
  69. .line-item-header {
  70. border-radius: 6px 6px 0 0;
  71. ...
  72. }
  73.  
  74. <table class="line-items" cellpadding="0" cellspacing="0">
  75.  
  76. box-shadow:0 0 0 2px black;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement