home.css 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. section#profile{
  2. display: inline-block;
  3. vertical-align: top;
  4. width: 40%;
  5. margin: auto 2em auto auto;
  6. }
  7. @media screen and (max-width : 800px){
  8. section#profile{
  9. display: block;
  10. width: 90%;
  11. margin: auto;
  12. }
  13. }
  14. section#profile article img#profile_image{
  15. display: inline-block;
  16. vertical-align: top;
  17. width: 25%;
  18. height: 25%;
  19. border: 0.2em solid #446644;
  20. border-radius: 1em 5em;
  21. }
  22. section#profile article div#profile_content{
  23. width: 60%;
  24. padding: 0.5em 1.5em;
  25. display: inline-block;
  26. vertical-align: top;
  27. }
  28. section#projects{
  29. display: inline-block;
  30. vertical-align: top;
  31. width: 50%;
  32. margin: 0;
  33. }
  34. @media screen and (max-width : 800px){
  35. section#projects{
  36. display: block;
  37. width: 90%;
  38. margin: 2em auto auto auto;
  39. }
  40. }
  41. section#projects article.project img.project_image{
  42. padding: 0.5em;
  43. width: 5em;
  44. height: 5em;
  45. background-color: #cccccc;
  46. border: 0.1em solid #60ae29;
  47. box-shadow: inset 0 0 0.5em #00220077;
  48. border-radius: 1em;
  49. }
  50. @media screen and (max-width : 800px){
  51. section#projects article.project img.project_image{
  52. padding: 0.9em;
  53. width: 10em;
  54. height: 10em;
  55. }
  56. }
  57. section#projects article.project td.project_details{
  58. vertical-align: top;
  59. padding-left: 1em;
  60. }
  61. section div.buttons{
  62. text-align: right;
  63. padding: 0.5em 2em 0 2em;
  64. }