profile.css 2.4 KB

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