My HTML email signature. https://codepen.io/Kevin-Mok/pen/KKKPPwy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

129 lines
1.8 KiB

  1. $name-color: #002f65;
  2. body {
  3. display: flex;
  4. margin: 0;
  5. align-items: center;
  6. justify-content: center;
  7. height: 100vh;
  8. /* background-color: black; */
  9. background-color: #1c1e1f;
  10. }
  11. .presentational-container {
  12. // padding: 20px;
  13. box-shadow: 2px 2px 10px 5px;
  14. background-color: #fff;
  15. }
  16. table {
  17. background: none;
  18. margin: 0;
  19. // padding: 10px 10px 0;
  20. border-width: 1px 0 0 0;
  21. border-style: solid;
  22. border-color: $name-color;
  23. padding-top: 10px;
  24. }
  25. td {
  26. padding-bottom: 3px;
  27. }
  28. .headshot-cell {
  29. position: relative;
  30. left: -12px;
  31. }
  32. td.headshot-cell a {
  33. text-decoration: none;
  34. }
  35. td.headshot-cell img {
  36. vertical-align: middle;
  37. width:120px;
  38. // border-radius: 100%;
  39. margin-right: 5px;
  40. border-radius: 5px;
  41. }
  42. td.description-cell > table {
  43. background: none;
  44. padding-left: 0px;
  45. border: 0px;
  46. margin: 0;
  47. padding: 0;
  48. }
  49. td.full-name {
  50. font-weight: bold;
  51. // color: $name-color;
  52. font-size: 18px;
  53. font-family: Arial, Helvetica, sans-serif;
  54. }
  55. td.title {
  56. // padding-bottom: 10px;
  57. color: #333333;
  58. font-size: 14px;
  59. font-family: Arial, Helvetica, sans-serif;
  60. img {
  61. width: 5em;
  62. }
  63. }
  64. td.website {
  65. // padding-bottom: 10px;
  66. vertical-align: top;
  67. color: #333333;
  68. font-size: 14px;
  69. font-family: Arial, Helvetica, sans-serif;
  70. }
  71. td.website a {
  72. color: #4BAFDB;
  73. text-decoration: none;
  74. font-weight: normal;
  75. font-size: 14px;
  76. }
  77. td.social-icons {
  78. // padding-top: -75px;
  79. position: relative;
  80. top: -8px;
  81. }
  82. td.social-icons ul {
  83. list-style: none;
  84. padding: 0;
  85. margin: 0;
  86. height: 25px;
  87. }
  88. td.social-icons li {
  89. display: inline-block;
  90. padding-right: 9px;
  91. }
  92. td.social-icons a {
  93. text-decoration: none;
  94. }
  95. td.social-icons img {
  96. // width: 25px;
  97. // height: 25px;
  98. height: 1.5em;
  99. }
  100. #gitea-icon {
  101. height: 2em;
  102. position: relative;
  103. top: 3px;
  104. }
  105. #linkedin-icon {
  106. position: relative;
  107. left: -3px;
  108. }