blog.css 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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. margin: 0.5em;
  35. }
  36. table#blog_post_list td, th{
  37. border: 1px solid black;
  38. padding: 0.5em;
  39. }
  40. table#blog_post_list th{
  41. background-color: #66aaff;
  42. }
  43. table#blog_post_list td.blog_column_title{
  44. width: 10%;
  45. }
  46. table#blog_post_list td.blog_column_text{
  47. width: 25%;
  48. }
  49. table#blog_post_list td.blog_column_text img{
  50. max-width: 5em;
  51. max-height: 2em;
  52. border: 0.1em solid black;
  53. margin: 0.05em;
  54. }
  55. table#blog_post_list td.blog_column_details{
  56. font-size: 80%;
  57. width: 10%;
  58. text-align: center;
  59. }
  60. table#blog_post_list td.blog_column_translations{
  61. width: 10%;
  62. text-align: center;
  63. }
  64. table#blog_post_list td.blog_column_action{
  65. width: 10%;
  66. text-align: center;
  67. }
  68. table#blog_post_list td.blog_column_action input{
  69. margin: 0.05em;
  70. padding: 0.06em;
  71. font-size: 70%
  72. }
  73. table#blog_post_list form{
  74. margin: 0;
  75. }
  76. table#blog_post_list input[type="button"], input[type="submit"]{
  77. width: 90%;
  78. margin-top: 0.2em;
  79. margin-bottom: 0.2em;
  80. }
  81. /* /blog/edit/index.php */
  82. img.image_upload_preview_visible{
  83. display: block;
  84. height: 5em;
  85. }
  86. /* Translate page */
  87. div#translation_instructions{
  88. text-align: center;
  89. }
  90. div#translation_instructions ul{
  91. display: inline-block;
  92. text-align: left;
  93. }
  94. div#translation_instructions ul li{
  95. margin-top: 0.5em;
  96. }
  97. table#table_translate_languages td.translate_language{
  98. min-width: 30%;
  99. border-collapse: collapse;
  100. border: none;
  101. vertical-align: top;
  102. }
  103. div.translate_row_title{
  104. height: 3em;
  105. }
  106. div.translate_row_description{
  107. max-height: 20em;
  108. overflow: auto;
  109. }
  110. div.translate_row_description p{
  111. font-size: 80%;
  112. }
  113. div.translate_row_description textarea{
  114. width: 100%;
  115. height: 80%;
  116. resize: none;
  117. }