profile.css 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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;
  10. }
  11. @media screen and (max-width : 800px){
  12. section#info{
  13. width: 90%;
  14. margin: auto;
  15. text-align: center;
  16. }
  17. }
  18. section#info img#profile_image{
  19. display: block;
  20. margin: 0.5em auto;
  21. max-width: 10em;
  22. max-height: 10em;
  23. border-radius: 1.2em;
  24. box-shadow: 0 0 0 0.1em #000000, 0 0 0 0.3em #66bf38, 0 0 0 0.4em #000000;
  25. }
  26. @media screen and (max-width : 800px){
  27. section#info img#profile_image{
  28. display: inline-block;
  29. vertical-align: middle;
  30. width: 30%;
  31. max-width: 12em;
  32. max-height: 12em;
  33. }
  34. }
  35. section#info h5{
  36. margin-top: 0;
  37. }
  38. section#info h5 span{
  39. display: block;
  40. text-align: center;
  41. font-size: 110%;
  42. padding: 0.5em;
  43. }
  44. section#info div#social{
  45. text-align: center;
  46. margin: auto;
  47. }
  48. @media screen and (max-width : 800px){
  49. section#info div#social{
  50. display: inline-block;
  51. vertical-align: middle;
  52. width: 100%;
  53. margin: auto;
  54. }
  55. }
  56. section#info div#social img{
  57. width: 60px;
  58. height: 60px;
  59. margin: 10px;
  60. vertical-align: middle;
  61. background-color: #ffffff;
  62. border: 0.2em solid #ffffff;
  63. border-radius: 0.4em;
  64. box-shadow: 0 0 0.3em #003300;
  65. transition: all .2s ease-in-out;
  66. }
  67. section#info div#social img:hover{
  68. width: 70px;
  69. height: 70px;
  70. margin: 5px;
  71. border-radius: 50%;
  72. box-shadow: 0 0 0.5em #55aa55;
  73. }
  74. section#about{
  75. text-align: left;
  76. display: inline-block;
  77. vertical-align: top;
  78. width: 50%;
  79. margin: auto;
  80. }
  81. @media screen and (max-width : 800px){
  82. section#about{
  83. width: 90%;
  84. margin: 2em auto auto auto;
  85. }
  86. }
  87. section#about p{
  88. font-style: italic;
  89. text-indent: 1em;
  90. margin: 2em 4em;
  91. color: #335333;
  92. }
  93. @media screen and (max-width : 800px){
  94. section#about p{
  95. font-style: initial;
  96. text-indent: 0.7em;
  97. color: initial;
  98. margin: 0 0 1em 0;
  99. }
  100. }
  101. section#about div#resume_download{
  102. text-align: center;
  103. }
  104. section#about div#resume_download a.a_button{
  105. display: inline-block;
  106. vertical-align: top;
  107. margin: auto 1.5em 1.5em auto;
  108. }
  109. section#about div#resume_download details{
  110. display: inline-block;
  111. vertical-align: top;
  112. font-style: italic;
  113. margin-top: 0.5em;
  114. width: 15em;
  115. }
  116. section#about div#resume_download details summary{
  117. color: #777777;
  118. font-size: 90%;
  119. text-align: left;
  120. }
  121. section#about div#resume_download details ul{
  122. text-align: left;
  123. margin: 0.1em 0.1em 0.1em 0.1em;
  124. }
  125. section#skills{
  126. width: 30%;
  127. display: inline-block;
  128. vertical-align: top;
  129. margin: 2em auto auto auto;
  130. }
  131. @media screen and (max-width : 800px){
  132. section#skills{
  133. width: 90%;
  134. margin: 2em auto auto auto;
  135. }
  136. }
  137. section#skills p{
  138. text-align: center;
  139. }
  140. section#experience{
  141. width: 50%;
  142. display: inline-block;
  143. vertical-align: top;
  144. margin: 2em auto auto auto;
  145. }
  146. @media screen and (max-width : 800px){
  147. section#experience{
  148. width: 90%;
  149. margin: 2em auto auto auto;
  150. }
  151. }
  152. section#experience table{
  153. border-collapse: collapse;
  154. }
  155. section#experience table td.company{
  156. vertical-align: top;
  157. text-align: right;
  158. padding-right: 2em;
  159. }
  160. section#experience table td.company h5.company{
  161. margin-top: 0;
  162. font-size: 120%;
  163. min-width: 12em;
  164. margin-bottom: 0.5em;
  165. }
  166. @media screen and (max-width : 800px){
  167. section#experience table td.company h5.company{
  168. font-size: 100%;
  169. min-width: 9em;
  170. margin-bottom: 0.2em;
  171. }
  172. }
  173. section#experience table td.company span.company_logo{
  174. vertical-align: middle;
  175. }
  176. section#experience table td.company span.company_logo img{
  177. max-width: 4em;
  178. max-height: 4em;
  179. background-color: #ffffff;
  180. border: 0.1em solid #000000;
  181. border-radius: 0.3em;
  182. vertical-align: middle;
  183. }
  184. section#experience table td.timeline{
  185. width: 0.2em;
  186. vertical-align: top;
  187. padding: 0;
  188. /*background-image: url("/assets/control/point-spaced.svg");
  189. background-size: 2em;
  190. background-repeat: repeat-y;*/
  191. background-color: #00000033
  192. }
  193. section#experience table td.timeline img{
  194. width: 2em;
  195. height: 2em;
  196. margin: 0 -0.9em;
  197. }
  198. section#experience table td.details{
  199. padding: 0 0 1em 2em;
  200. vertical-align: top;
  201. }
  202. section#experience table td.details h4.role{
  203. margin-bottom: 0;
  204. margin-top: 0;
  205. }
  206. section#experience table td.details span.date{
  207. color: #444444;
  208. font-style: italic;
  209. }
  210. section#experience table td.details p.description{
  211. margin-left: 1em;
  212. }