projects.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /* Projects page */
  2. section{
  3. width: 90%;
  4. margin: auto;
  5. }
  6. section div#projects{
  7. margin: 0;
  8. padding: 0;
  9. text-align: center;
  10. }
  11. section article.project{
  12. position: relative;
  13. display: inline-block;
  14. vertical-align: top;
  15. width: 40%;
  16. margin: 2em 3%;
  17. padding: 1em;
  18. text-align: left;
  19. border-left: 0.1em solid #aacaaa;
  20. border-right: 0.1em solid #aacaaa;
  21. background: linear-gradient(to bottom, #e5f0e500 0%, #e5f0e5ff 20%, #e5f0e5ff 80%, #e5f0e500 100%);
  22. }
  23. @media screen and (max-width : 800px){
  24. section article.project{
  25. width: 96%;
  26. margin: 0.3em auto;
  27. padding: 0.3em;
  28. }
  29. }
  30. section article.project table{
  31. width: 100%;
  32. }
  33. section article.project table td.logo{
  34. text-align: center;
  35. vertical-align: top;
  36. width: 9em;
  37. }
  38. section article.project table td.logo img.project_image{
  39. padding: 0.5em;
  40. max-width: 9em;
  41. max-height: 9em;
  42. background-color: #cccccc;
  43. border: 0.1em solid #60ae29;
  44. box-shadow: inset 0 0 0.5em #00220077;
  45. border-radius: 1em;
  46. }
  47. @media screen and (max-width : 800px){
  48. section article.project table td.logo{
  49. width: 17vw;
  50. }
  51. section article.project table td.logo img.project_image{
  52. padding: 0.3em;
  53. width: 15vw;
  54. height: 15vw;
  55. border-radius: 0.5em;
  56. }
  57. }
  58. section article.project table td.project_details{
  59. padding-left: 1.5em;
  60. vertical-align: top;
  61. }
  62. @media screen and (max-width : 800px){
  63. section article.project table td.project_details{
  64. padding-left: 0.5em;
  65. }
  66. section article.project table td.project_details h4{
  67. margin-bottom: 0.2em;
  68. }
  69. }
  70. section article.project table span.project_tagline{
  71. font-size: 80%;
  72. font-style: italic;
  73. }