github.com/dhax/go-base@v0.0.0-20231004214136-8be7e5c1972b/templates/email/styles.html (about)

     1  {{define "styles"}}
     2  <style type="text/css">
     3  body {
     4      background-color: #f6f6f6;
     5  }
     6  
     7  p {
     8  font-family: 'Helvetica Neue', Verdana, sans-serif;
     9  color: #107A94;
    10  }
    11  /* -------------------------------------
    12      LINKS & BUTTONS
    13  ------------------------------------- */
    14  a {
    15      color: #348eda;
    16      text-decoration: underline;
    17  }
    18  
    19  .btn-primary {
    20      text-decoration: none;
    21      color: #FFF;
    22      background-color: #348eda;
    23      border: solid #348eda;
    24      border-width: 10px 20px;
    25      line-height: 2em;
    26      font-weight: bold;
    27      text-align: center;
    28      cursor: pointer;
    29      display: inline-block;
    30      border-radius: 5px;
    31      text-transform: capitalize;
    32  }
    33  
    34  footer {
    35      background-color: #8AB8CE;
    36  }
    37  
    38  </style>
    39  {{end}}