projects.css 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. /* Projects page */
  2. section{
  3. width: 90%;
  4. margin: auto;
  5. text-align: center;
  6. }
  7. section h3{
  8. text-align: left;
  9. }
  10. section article.project{
  11. position: relative;
  12. display: inline-block;
  13. vertical-align: top;
  14. width: 40%;
  15. margin: 2em 3%;
  16. padding: 1em;
  17. text-align: left;
  18. border-left: 0.1em solid #aacaaa;
  19. border-right: 0.1em solid #aacaaa;
  20. background: linear-gradient(to bottom, #e5f0e500 0%, #e5f0e5ff 20%, #e5f0e5ff 80%, #e5f0e500 100%);
  21. }
  22. @media screen and (max-width : 800px){
  23. section article.project{
  24. width: 90%;
  25. margin: 1em auto;
  26. }
  27. }
  28. section article.project table{
  29. width: 100%;
  30. }
  31. section article.project table img.project_image{
  32. padding: 0.5em;
  33. width: 7em;
  34. height: 7em;
  35. background-color: #cccccc;
  36. border: 0.1em solid #60ae29;
  37. box-shadow: inset 0 0 0.5em #00220077;
  38. border-radius: 1em;
  39. }
  40. div#project_list article.project table td.project_details{
  41. padding-left: 1.5em;
  42. }
  43. div#project_list article.project table span.project_tagline{
  44. font-size: 80%;
  45. font-style: italic;
  46. }