blog.css 2.1 KB

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