blog.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. /* /blog/index.php */
  2. table#post_list{
  3. width: 100%;
  4. border-spacing: 0;
  5. border-collapse: collapse;
  6. }
  7. table#post_list th{
  8. font-weight: bold;
  9. background: linear-gradient(to bottom, #4e9987 0%,#69d8b9 89%,#60caac 97%,#ade8f9 100%);
  10. border: 0.1em solid #335533;
  11. }
  12. table#post_list td{
  13. border: 0.1em solid #335533;
  14. padding: 0.2em;
  15. }
  16. table#post_list td.td_post{
  17. width: 30%;
  18. }
  19. table#post_list td.td_post h4{
  20. margin: 0.2em;
  21. }
  22. table#post_list td.td_post h4 img{
  23. max-height: 2em;
  24. max-width: 2em;
  25. vertical-align: middle;
  26. }
  27. table#post_list td.td_post img.post_image{
  28. border: 0.2em solid #335533;
  29. border-radius: 0.4em;
  30. max-height: 3em;
  31. max-width: 3em;
  32. }
  33. table#post_list td.td_post{
  34. width: 50%;
  35. font-size: 80%;
  36. }
  37. table#post_list td.td_actions{
  38. width: 20%;
  39. text-align: center;
  40. }
  41. table#post_list td.td_actions input{
  42. padding: 0.1em;
  43. display: block;
  44. margin: auto;
  45. width: 90%;
  46. }
  47. /* /blog/edit.php */
  48. div#post_edit hr.separator{
  49. margin: 1.5em 20% 1.5em 20%;
  50. opacity: 0.5;
  51. }
  52. div#post_edit div#image_reel{
  53. overflow-x: scroll;
  54. border: 0.1em solid #003400;
  55. border-radius: 0.3em;
  56. height: 7em;
  57. background-color: #334433;
  58. padding: 0.5em;
  59. }
  60. div#post_edit div#image_reel div.post_image{
  61. display: inline-block;
  62. vertical-align: top;
  63. margin: 0.5em 0.25em 0.5em 0.25em;
  64. }
  65. div#post_edit div#image_reel div.post_image img{
  66. vertical-align: middle;
  67. max-height: 7em;
  68. max-width: 9em;
  69. border: 0.2em solid #003400;
  70. border-radius: 0.1em;
  71. margin: 0.5em;
  72. background-color: #ffffff;
  73. }
  74. div#post_edit div#image_reel div.post_image .image_control{
  75. display: inline-block;
  76. font-size: 100%;
  77. width: 40%;
  78. height: 2em;
  79. text-align: center;
  80. vertical-align: top;
  81. }
  82. div#post_edit table#comments{
  83. border-collapse: collapse;
  84. width: 100%;
  85. }
  86. div#post_edit table#comments td{
  87. border-right: 0.1em solid #334433;
  88. border-left: 0.1em solid #334433;
  89. border-bottom: 0.2em solid #334433;
  90. border-top: 0.2em solid #334433;
  91. }
  92. div#post_edit table#comments td.text{
  93. width: 35%;
  94. }
  95. div#post_edit table#comments td.details{
  96. width: 50%;
  97. line-height: 2
  98. }
  99. div#post_edit table#comments td.actions{
  100. width: 15%;
  101. text-align: center;
  102. }
  103. div#post_edit table#comments td.actions input{
  104. width: 90%;
  105. margin: auto;
  106. padding: 0.2em;
  107. display: block;
  108. }