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.

119 lines
1.7 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. td.headshot-cell a {
  29. text-decoration: none;
  30. }
  31. td.headshot-cell img {
  32. vertical-align: middle;
  33. width:120px;
  34. // border-radius: 100%;
  35. margin-right: 5px;
  36. border-radius: 5px;
  37. }
  38. td.description-cell > table {
  39. background: none;
  40. padding-left: 0px;
  41. border: 0px;
  42. margin: 0;
  43. padding: 0;
  44. }
  45. td.full-name {
  46. font-weight: bold;
  47. // color: $name-color;
  48. font-size: 18px;
  49. font-family: Arial, Helvetica, sans-serif;
  50. }
  51. td.title {
  52. // padding-bottom: 10px;
  53. color: #333333;
  54. font-size: 14px;
  55. font-family: Arial, Helvetica, sans-serif;
  56. img {
  57. width: 5em;
  58. }
  59. }
  60. td.website {
  61. // padding-bottom: 10px;
  62. vertical-align: top;
  63. color: #333333;
  64. font-size: 14px;
  65. font-family: Arial, Helvetica, sans-serif;
  66. }
  67. td.website a {
  68. color: #4BAFDB;
  69. text-decoration: none;
  70. font-weight: normal;
  71. font-size: 14px;
  72. }
  73. td.social-icons {
  74. // padding-top: -75px;
  75. position: relative;
  76. top: -8px;
  77. }
  78. td.social-icons ul {
  79. list-style: none;
  80. padding: 0;
  81. margin: 0;
  82. height: 25px;
  83. }
  84. td.social-icons li {
  85. display: inline-block;
  86. padding-right: 6px;
  87. }
  88. td.social-icons a {
  89. text-decoration: none;
  90. }
  91. td.social-icons img {
  92. // width: 25px;
  93. // height: 25px;
  94. height: 1.5em;
  95. }
  96. #gitea-icon {
  97. height: 2em;
  98. position: relative;
  99. top: 3px;
  100. }