profile.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. main{
  2. text-align: center;
  3. }
  4. section#info{
  5. text-align: left;
  6. display: inline-block;
  7. vertical-align: top;
  8. width: 30%;
  9. margin: auto 2em auto auto;
  10. }
  11. @media screen and (max-width : 800px){
  12. section#info{
  13. width: 90%;
  14. margin: auto;
  15. text-align: center;
  16. }
  17. section#info h3{
  18. text-align: left;
  19. }
  20. }
  21. section#info img#profile_image{
  22. display: block;
  23. margin: 0.5em auto;
  24. max-width: 10em;
  25. max-height: 10em;
  26. border-radius: 1.2em;
  27. box-shadow: 0 0 0 0.1em #000000, 0 0 0 0.3em #66bf38, 0 0 0 0.4em #000000;
  28. }
  29. @media screen and (max-width : 800px){
  30. section#info img#profile_image{
  31. display: inline-block;
  32. vertical-align: middle;
  33. width: 30%;
  34. max-width: 12em;
  35. max-height: 12em;
  36. }
  37. }
  38. section#info div#social{
  39. text-align: center;
  40. margin: auto;
  41. }
  42. @media screen and (max-width : 800px){
  43. section#info div#social{
  44. display: inline-block;
  45. vertical-align: middle;
  46. width: 40%;
  47. margin: auto;
  48. }
  49. }
  50. section#info div#social img{
  51. width: 60px;
  52. height: 60px;
  53. margin: 10px;
  54. vertical-align: middle;
  55. background-color: #ffffff;
  56. border: 0.2em solid #ffffff;
  57. border-radius: 0.4em;
  58. box-shadow: 0 0 0.3em #003300;
  59. transition: all .2s ease-in-out;
  60. }
  61. section#info div#social img:hover{
  62. width: 70px;
  63. height: 70px;
  64. margin: 5px;
  65. border-radius: 50%;
  66. box-shadow: 0 0 0.5em #55aa55;
  67. }
  68. section#about{
  69. text-align: left;
  70. display: inline-block;
  71. vertical-align: top;
  72. width: 50%;
  73. margin: auto;
  74. }
  75. @media screen and (max-width : 800px){
  76. section#about{
  77. width: 90%;
  78. margin: 2em auto auto auto;
  79. }
  80. }
  81. section#about p{
  82. font-style: italic;
  83. text-indent: 1em;
  84. margin: 2em 4em;
  85. color: #335333;
  86. }
  87. section#about div#cv_download{
  88. text-align: center;
  89. }
  90. section#about div#cv_download a.a_button{
  91. display: inline-block;
  92. vertical-align: top;
  93. margin: auto 3em 1.5em auto;
  94. }
  95. section#about div#cv_download details{
  96. display: inline-block;
  97. vertical-align: top;
  98. font-style: italic;
  99. margin-top: 0.5em;
  100. }
  101. section#about div#cv_download details summary{
  102. color: #777777;
  103. font-size: 90%;
  104. }
  105. section#about div#cv_download details ul{
  106. text-align: left;
  107. margin: 0.1em;
  108. }