github.com/mmrath/gobase@v0.0.1/client/resources/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          /* -------------------------------------
    13              LINKS & BUTTONS
    14          ------------------------------------- */
    15          a {
    16              color: #348eda;
    17              text-decoration: underline;
    18          }
    19  
    20          .btn-primary {
    21              text-decoration: none;
    22              color: #FFF;
    23              background-color: #348eda;
    24              border: solid #348eda;
    25              border-width: 10px 20px;
    26              line-height: 2em;
    27              font-weight: bold;
    28              text-align: center;
    29              cursor: pointer;
    30              display: inline-block;
    31              border-radius: 5px;
    32              text-transform: capitalize;
    33          }
    34  
    35          footer {
    36              background-color: #8AB8CE;
    37          }
    38  
    39      </style>
    40  {{end}}