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.

108 lines
1.6 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: 3px 0 0 0;
  21. border-style: solid;
  22. border-color: $name-color;
  23. }
  24. tr.outer-row td.headshot-cell {
  25. padding: 0 12px 0 0;
  26. }
  27. td {
  28. padding-bottom: 3px;
  29. }
  30. td.headshot-cell a {
  31. text-decoration: none;
  32. }
  33. td.headshot-cell img {
  34. vertical-align: middle;
  35. width:120px;
  36. border-radius: 100%;
  37. }
  38. td.description-cell {
  39. padding: 0 0 0 12px;
  40. }
  41. td.description-cell > table {
  42. background: none;
  43. border: 0px;
  44. margin: 0;
  45. padding: 0;
  46. }
  47. td.full-name {
  48. font-weight: bold;
  49. color: $name-color;
  50. font-size: 18px;
  51. font-family: Arial, Helvetica, sans-serif;
  52. }
  53. td.title {
  54. // padding-bottom: 10px;
  55. color: #333333;
  56. font-size: 14px;
  57. font-family: Arial, Helvetica, sans-serif;
  58. }
  59. td.website {
  60. // padding-bottom: 10px;
  61. vertical-align: top;
  62. color: #333333;
  63. font-size: 14px;
  64. font-family: Arial, Helvetica, sans-serif;
  65. }
  66. td.website a {
  67. color: #4BAFDB;
  68. text-decoration: none;
  69. font-weight: normal;
  70. font-size: 14px;
  71. }
  72. td.social-icons {
  73. padding-top: 5px;
  74. }
  75. td.social-icons ul {
  76. list-style: none;
  77. padding: 0;
  78. margin: 0;
  79. height: 25px;
  80. }
  81. td.social-icons li {
  82. display: inline-block;
  83. }
  84. td.social-icons a {
  85. text-decoration: none;
  86. }
  87. td.social-icons img {
  88. width: 25px;
  89. height: 25px;
  90. }