Advertisement
NikolayPaskulov

Untitled

Oct 17th, 2014
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  2. margin: 0;
  3. padding: 0;
  4. border: 0;
  5. font-size: 100%;
  6. font: inherit;
  7. vertical-align: baseline;
  8. font-family: Calibri;
  9. }
  10.  
  11. body {
  12. -moz-user-select: -moz-none;
  13. -khtml-user-select: none;
  14. -webkit-user-select: none;
  15. -ms-user-select: none;
  16. user-select: none;
  17. }
  18.  
  19. body * {
  20. box-sizing: border-box;
  21. }
  22.  
  23. div, nav {
  24. display: inline-block;
  25. float: left;
  26. }
  27.  
  28. #main-wrapper {
  29. margin: 30px;
  30. border: 1px solid #999999;
  31. clear: left;
  32. }
  33.  
  34. .plain-cell {
  35. padding: 3px;
  36. width: 80px;
  37. height: 27px;
  38. text-align: center;
  39. border-right: 1px solid #999999;
  40. }
  41.  
  42. .plain-cell:last-child {
  43. border-right: none;
  44. }
  45.  
  46. #table-header .plain-cell:first-child {
  47. text-align: center;
  48. }
  49.  
  50. .plain-cell:nth-child(1) {
  51. width: 220px;
  52. text-align: left;
  53. }
  54.  
  55. #table .plain-cell:nth-child(2) {
  56. text-align: left;
  57. }
  58.  
  59.  
  60. #table-header .plain-cell {
  61. height: 65px;
  62. font-weight: bold;
  63. font-size: 16px;
  64. background-color: #e9e9e9;
  65. }
  66.  
  67. .table-row {
  68. clear: left;
  69. border-bottom: 1px solid #999999;
  70. }
  71.  
  72. .table-row:last-child {
  73. border-bottom: none;
  74. }
  75.  
  76. #docsWrapper {
  77. width: 100%;
  78. border-top: 1px solid #999999;
  79. background-color: #d9d9d9;
  80. }
  81.  
  82. #main-wrapper #footer {
  83. border-top: 1px solid #999999;
  84. }
  85.  
  86. #dateHolder {
  87. margin-top: 30px;
  88. margin-left: 30px;
  89. border: 1px solid #999999;
  90. background: #e9e9e9;
  91. }
  92.  
  93. #dateHolder * {
  94. margin: 10px;
  95. }
  96.  
  97. #dateHolder label {
  98. margin-right:0;
  99. }
  100.  
  101. input[type="date"] {
  102. border: 1px solid #d0d0d0;
  103. border-radius: 10px;
  104. }
  105.  
  106. #printInfo {
  107. width: 100%;
  108. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement