Advertisement
Guest User

Untitled

a guest
May 27th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. /* Excel 2010 */
  2.  
  3. table.excel2010
  4. {
  5. font-family: Calibri, Arial, Sans-serif;
  6. font-style: normal;
  7. font-weight: normal;
  8. font-size: 11pt;
  9. border-collapse: collapse;
  10. width: 100%;
  11. height: 100%;
  12. text-align: left;
  13. vertical-align: bottom;
  14. white-space: nowrap;
  15. }
  16.  
  17. table.excel2010 * td
  18. {
  19. padding: 1px;
  20. border: 1px;
  21. border-style: solid;
  22. border-color: #D8D8D8;
  23. background-color: #FFFFFF;
  24. color: #000000;
  25. z-index: 1;
  26. }
  27.  
  28. table.excel2010 * td.header
  29. {
  30. text-align: center;
  31. padding: 1px;
  32. border: 1px;
  33. border-style: solid;
  34. border-color: #A8A8A8;
  35. background-color: #E0E0E0;
  36. color: #303030;
  37. z-index: 99;
  38. }
  39.  
  40. table.excel2010 * td.tabActive
  41. {
  42. padding: 1px;
  43. border: 1px;
  44. border-style: solid;
  45. border-color: #FFFFFF;
  46. background-color: #FFFFFF;
  47. color: #303030;
  48. font-weight: bold;
  49. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement