Advertisement
Guest User

Soft Layout CSS

a guest
Oct 8th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.05 KB | None | 0 0
  1. body,html
  2. {
  3.     width:100%;
  4.     height:98.8%;
  5.     margin:0;
  6. }
  7. .table_header,
  8. .table_content,
  9. .table_bottom,
  10. .row_header,
  11. .column_header,
  12. .column_body,
  13. .cell_panel,
  14. .cell_body,
  15. .button_default,
  16. {
  17.     border-style:solid;
  18.     border-color:#000000;
  19.     border-width:1px;
  20.     border-spacing:0px;
  21. }
  22. .table_header
  23. {
  24.     border-width:1px 1px 0px 1px;
  25. }
  26. .table_bottom
  27. {
  28.     border-width:0px 1px 1px 1px;
  29. }
  30. .table_header,
  31. .table_content,
  32. .table_bottom
  33. {
  34.     margin:0.5% 0.5% 0% 0.5%;
  35.     width:99%;
  36. }
  37. .table_content
  38. {
  39.     margin:0% 0.5% 0% 0.5%;
  40.     height:95%;
  41.     table-layout:fixed;
  42. }
  43. .table_bottom
  44. {
  45.     margin:0% 0.5% 0.5% 0.5%;
  46. }
  47. .row_header
  48. {
  49.     background-color:#5B5D5B;
  50. }
  51. .column_header
  52. {
  53.     background-color:#D3CFC7;
  54. }
  55. .column_body
  56. {
  57.     background-color:#FFFFFF;
  58. }
  59. .cell_panel
  60. {
  61.     width:20%;
  62. }
  63. .cell_body
  64. {
  65.     width:80%;
  66. }
  67. .button_default
  68. {
  69.     margin:3px;
  70.     width:80%;
  71.     background-color:#D3CFC7;
  72. }
  73. .button_exit
  74. {
  75.     margin:1px;
  76. }
  77. .button_default,
  78. .button_exit
  79. {
  80.     cursor:pointer;
  81. }
  82. .header_text
  83. {
  84.     font-weight:700;
  85.     text-align:center;
  86.     color:#FFFFFF;
  87. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement