home.css 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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-radius: 50%;
  20. box-shadow: 0 0 0 0.1em #000000, 0 0 0 0.3em #66bf38, 0 0 0 0.4em #000000;
  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#profile article div.buttons{
  29. text-align: right;
  30. padding: 0.5em 2em 0 2em;
  31. }
  32. section#profile article div.buttons a.a_button img{
  33. filter: invert(1) brightness(1.4);
  34. vertical-align: middle;
  35. margin-left: 0.5em;
  36. width: 1.2em;
  37. }
  38. section#projects{
  39. display: inline-block;
  40. vertical-align: top;
  41. width: 50%;
  42. margin: 0;
  43. }
  44. @media screen and (max-width : 800px){
  45. section#projects{
  46. display: block;
  47. width: 90%;
  48. margin: 2em auto auto auto;
  49. }
  50. }
  51. section#projects article.project img.project_image{
  52. padding: 0.5em;
  53. width: 5em;
  54. height: 5em;
  55. background-color: #cccccc;
  56. border: 0.1em solid #60ae29;
  57. box-shadow: inset 0 0 0.5em #00220077;
  58. border-radius: 1em;
  59. }
  60. @media screen and (max-width : 800px){
  61. section#projects article.project img.project_image{
  62. padding: 0.9em;
  63. width: 10em;
  64. height: 10em;
  65. }
  66. }
  67. section#projects article.project td.project_details{
  68. vertical-align: top;
  69. padding-left: 1em;
  70. }
  71. section#projects div.buttons{
  72. text-align: right;
  73. padding: 0.5em 2em 0 2em;
  74. }