projects.css 995 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. table#project_list{
  2. width: 100%;
  3. border-spacing: 0;
  4. border-collapse: collapse;
  5. }
  6. table#project_list th{
  7. font-weight: bold;
  8. background: linear-gradient(to bottom, #4e9987 0%,#69d8b9 89%,#60caac 97%,#ade8f9 100%);
  9. border: 0.1em solid #335533;
  10. }
  11. table#project_list td{
  12. border: 0.1em solid #335533;
  13. padding: 0.2em;
  14. }
  15. table#project_list td.td_project{
  16. width: 30%;
  17. }
  18. table#project_list td.td_project h4{
  19. margin: 0.2em;
  20. }
  21. table#project_list td.td_project h4 img{
  22. max-height: 2em;
  23. max-width: 2em;
  24. vertical-align: middle;
  25. }
  26. table#project_list td.td_project img.project_image{
  27. border: 0.2em solid #335533;
  28. border-radius: 0.4em;
  29. max-height: 3em;
  30. max-width: 3em;
  31. }
  32. table#project_list td.td_details{
  33. width: 50%;
  34. font-size: 80%;
  35. }
  36. table#project_list td.td_actions{
  37. width: 20%;
  38. text-align: center;
  39. }
  40. table#project_list td.td_actions input{
  41. padding: 0.1em;
  42. display: block;
  43. margin: auto;
  44. width: 90%;
  45. }