profile.css 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. border: 0.3em solid #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. }
  74. @media screen and (max-width : 800px){
  75. section#about{
  76. width: 90%;
  77. margin: 2em auto auto auto;
  78. }
  79. }
  80. section#about p{
  81. font-style: italic;
  82. text-indent: 1em;
  83. margin: 2em 4em;
  84. color: #335333;
  85. }
  86. section#about div#cv_download{
  87. text-align: center;
  88. }
  89. section#about div#cv_download a.a_button{
  90. display: inline-block;
  91. vertical-align: top;
  92. margin: auto 3em 1.5em auto;
  93. }
  94. section#about div#cv_download details{
  95. display: inline-block;
  96. vertical-align: top;
  97. font-style: italic;
  98. margin-top: 0.5em;
  99. }
  100. section#about div#cv_download details summary{
  101. color: #777777;
  102. font-size: 90%;
  103. }
  104. section#about div#cv_download details ul{
  105. text-align: left;
  106. margin: 0.1em;
  107. }