blog.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* /blog/add/index.php */
  2. div.blog_add_language{
  3. width: 31%;
  4. display: inline-block;
  5. vertical-align: top;
  6. }
  7. div#images{
  8. display: inline-block;
  9. vertical-align: top;
  10. width: 60%;
  11. }
  12. div#settings{
  13. display: inline-block;
  14. vertical-align: top;
  15. width: 35%;
  16. }
  17. input[type=text]{
  18. width: 100%;
  19. }
  20. textarea{
  21. width: 100%;
  22. height: 20em;
  23. }
  24. div.image_upload_container{
  25. border-radius: 1em;
  26. vertical-align: top;
  27. display: inline-block;
  28. background-color: #888888;
  29. padding: 1em;
  30. margin: 1em 1em 1em 1em;
  31. }
  32. img.image_upload_preview{
  33. display: none;
  34. height: 5em;
  35. }
  36. /* /blog/inex.php */
  37. table#blog_post_list{
  38. border-collapse: collapse;
  39. }
  40. table#blog_post_list td, th{
  41. border: 1px solid black;
  42. padding: 0.5em;
  43. }
  44. table#blog_post_list th{
  45. background-color: #999999;
  46. }
  47. table#blog_post_list td.blog_column_title{
  48. width: 10%;
  49. }
  50. table#blog_post_list td.blog_column_text{
  51. width: 25%;
  52. }
  53. table#blog_post_list td.blog_column_text img{
  54. max-width: 6em;
  55. max-height: 4em;
  56. border: 0.1em solid black;
  57. margin: 0.1em;
  58. }
  59. table#blog_post_list td.blog_column_details{
  60. width: 10%;
  61. text-align: center;
  62. }
  63. table#blog_post_list td.blog_column_translations{
  64. width: 10%;
  65. text-align: center;
  66. }
  67. table#blog_post_list td.blog_column_action{
  68. width: 10%;
  69. text-align: center;
  70. }
  71. table#blog_post_list form{
  72. margin: 0;
  73. }
  74. table#blog_post_list input[type="button"], input[type="submit"]{
  75. width: 90%;
  76. margin-top: 0.2em;
  77. margin-bottom: 0.2em;
  78. }
  79. /* /blog/edit/index.php */
  80. img.image_upload_preview_visible{
  81. display: block;
  82. height: 5em;
  83. }
  84. /* Translate page */
  85. div#translation_instructions{
  86. text-align: center;
  87. }
  88. div#translation_instructions ul{
  89. display: inline-block;
  90. text-align: left;
  91. }
  92. div#translation_instructions ul li{
  93. margin-top: 0.5em;
  94. }
  95. table#table_translate_languages td.translate_language{
  96. min-width: 30%;
  97. border-collapse: collapse;
  98. border: none;
  99. vertical-align: top;
  100. }
  101. div.translate_row_title{
  102. height: 3em;
  103. }
  104. div.translate_row_description{
  105. max-height: 20em;
  106. overflow: auto;
  107. }
  108. div.translate_row_description p{
  109. font-size: 80%;
  110. }
  111. div.translate_row_description textarea{
  112. width: 100%;
  113. height: 80%;
  114. resize: none;
  115. }