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.

101 lines
1.5 KiB

  1. body {
  2. display: flex;
  3. margin: 0;
  4. align-items: center;
  5. justify-content: center;
  6. height: 100vh;
  7. background-color: #7681B3;
  8. }
  9. .presentational-container {
  10. padding: 20px;
  11. box-shadow: 2px 2px 10px 5px;
  12. background-color: #fff;
  13. }
  14. table {
  15. background: none;
  16. margin: 0;
  17. padding: 10px 10px 0;
  18. border-width: 3px 0 0 0;
  19. border-style: solid;
  20. border-color: #232C9F;
  21. }
  22. tr.outer-row td.headshot-cell {
  23. padding: 0 12px 0 0;
  24. }
  25. td.headshot-cell a {
  26. text-decoration: none;
  27. }
  28. td.headshot-cell img {
  29. vertical-align: middle;
  30. width:120px;
  31. border-radius: 100%;
  32. }
  33. td.description-cell {
  34. padding: 0 0 0 12px;
  35. }
  36. td.description-cell > table {
  37. background: none;
  38. border: 0px;
  39. margin: 0;
  40. padding: 0;
  41. }
  42. td.full-name {
  43. font-weight: bold;
  44. color: #232C9F;
  45. font-size: 18px;
  46. font-family: Arial, Helvetica, sans-serif;
  47. }
  48. td.title {
  49. padding-bottom: 10px;
  50. color: #333333;
  51. font-size: 14px;
  52. font-family: Arial, Helvetica, sans-serif;
  53. }
  54. td.website {
  55. padding-bottom: 10px;
  56. vertical-align: top;
  57. color: #333333;
  58. font-size: 14px;
  59. font-family: Arial, Helvetica, sans-serif;
  60. }
  61. td.website a {
  62. color: #4BAFDB;
  63. text-decoration: none;
  64. font-weight: normal;
  65. font-size: 14px;
  66. }
  67. td.social-icons {
  68. padding-top: 5px;
  69. }
  70. td.social-icons ul {
  71. list-style: none;
  72. padding: 0;
  73. margin: 0;
  74. height: 25px;
  75. }
  76. td.social-icons li {
  77. display: inline-block;
  78. }
  79. td.social-icons a {
  80. text-decoration: none;
  81. }
  82. td.social-icons img {
  83. width: 25px;
  84. height: 25px;
  85. }