projects.css 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. /* /projects/index.php */
  2. table#project_list{
  3. width: 100%;
  4. border-spacing: 0;
  5. border-collapse: collapse;
  6. }
  7. table#project_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#project_list td{
  13. border: 0.1em solid #335533;
  14. padding: 0.2em;
  15. }
  16. table#project_list td.td_project{
  17. width: 30%;
  18. }
  19. table#project_list td.td_project h4{
  20. margin: 0.2em;
  21. }
  22. table#project_list td.td_project h4 img{
  23. max-height: 2em;
  24. max-width: 2em;
  25. vertical-align: middle;
  26. }
  27. table#project_list td.td_project img.project_image{
  28. border: 0.2em solid #335533;
  29. border-radius: 0.4em;
  30. max-height: 3em;
  31. max-width: 3em;
  32. }
  33. table#project_list td.td_details{
  34. width: 50%;
  35. font-size: 80%;
  36. }
  37. table#project_list td.td_actions{
  38. width: 20%;
  39. text-align: center;
  40. }
  41. table#project_list td.td_actions input{
  42. padding: 0.1em;
  43. display: block;
  44. margin: auto;
  45. width: 90%;
  46. }
  47. /* /projects/edit.php */
  48. div#project_edit hr.separator{
  49. margin: 1.5em 20% 1.5em 20%;
  50. opacity: 0.5;
  51. }
  52. div#project_edit img#icon{
  53. vertical-align: middle;
  54. width: 4em;
  55. height: 4em;
  56. border: 0.3em solid #003400;
  57. border-radius: 1em;
  58. }
  59. div#project_edit input#icon_file{
  60. width: 0;
  61. height: 0;
  62. opacity: 0;
  63. }
  64. div#project_edit div#image_reel{
  65. overflow-x: scroll;
  66. border: 0.1em solid #003400;
  67. border-radius: 0.3em;
  68. height: 7em;
  69. background-color: #334433;
  70. padding: 0.5em;
  71. }
  72. div#project_edit div#image_reel img{
  73. vertical-align: middle;
  74. max-height: 5em;
  75. max-width: 7em;
  76. border: 0.2em solid #003400;
  77. border-radius: 0.1em;
  78. margin: 0.5em;
  79. background-color: #ffffff;
  80. }
  81. div#project_edit input#new_version{
  82. width: 16em;
  83. margin: 0.5em auto 2em auto;
  84. display: block;
  85. }
  86. div#project_edit table#versions{
  87. border-collapse: collapse;
  88. width: 100%;
  89. }
  90. div#project_edit table#versions td{
  91. border-right: 0.1em solid #334433;
  92. border-left: 0.1em solid #334433;
  93. border-bottom: 0.2em solid #334433;
  94. border-top: 0.2em solid #334433;
  95. }
  96. div#project_edit table#versions td.version_name{
  97. width: 15%;
  98. }
  99. div#project_edit table#versions td.version_details{
  100. width: 70%;
  101. line-height: 2
  102. }
  103. div#project_edit table#versions td.version_actions{
  104. width: 15%;
  105. text-align: center;
  106. }
  107. div#project_edit table#versions td.version_actions input{
  108. width: 90%;
  109. margin: auto;
  110. padding: 0.2em;
  111. display: block;
  112. }
  113. div#project_edit table#comments{
  114. border-collapse: collapse;
  115. width: 100%;
  116. }
  117. div#project_edit table#comments td{
  118. border-right: 0.1em solid #334433;
  119. border-left: 0.1em solid #334433;
  120. border-bottom: 0.2em solid #334433;
  121. border-top: 0.2em solid #334433;
  122. }
  123. div#project_edit table#comments td.text{
  124. width: 35%;
  125. }
  126. div#project_edit table#comments td.details{
  127. width: 50%;
  128. line-height: 2
  129. }
  130. div#project_edit table#comments td.actions{
  131. width: 15%;
  132. text-align: center;
  133. }
  134. div#project_edit table#comments td.actions input{
  135. width: 90%;
  136. margin: auto;
  137. padding: 0.2em;
  138. display: block;
  139. }