profile.css 2.6 KB

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