all property

String all

Getter for all css style pre-define

Implementation

static String get all {
  return '''
    <style>
      html {
          margin: 0px;
          padding: 0px;
      }
        body,
        p {
            margin: 0px;
            padding: 0px;
            font-family: helvetica;
        }

        body {
            background: #eee;
            width: 100%;
        }

        .receipt {
            max-width: 100%;
            padding: 0px;
            background: white;
        }

        .container {
            padding-bottom: 45px;
        }

        hr {
            border-top: 2px dashed black;
        }

        .text-center {
            text-align: center;
        }

        .text-left {
            text-align: left;
        }

        .text-right {
            text-align: right;
        }

        .text-justify {
            text-align: justify;
        }

        .right {
            float: right;
        }

        .left {
            float: left;
        }

        span {
            color: black;
            font-family: helvetica;
        }

        .full-width {
            width: 100%;
        }

        .inline-block {
            display: inline-block;
        }

        .text-extra-large {
           font-size: 2.8em;
        }

        .text-large {
            font-size: 1.6em;
        }

        .text-medium {
            font-size: 1.2em;
        }

        .text-small {
            font-size: 0.8em;
        }
        .column {
            float: left;
            width: 100%;
        }
        .column-2 {
            float: left;
            width: 40%;
        }
        .column-3 {
            float: left;
            width:33.33%;
        }
        .row:after {
            content: "";
            display: table;
            clear: both;
            margin-bottom: 45px;
        }
        .column-2margin{
            margin-left: 20%;
        }
        .row-last:after {
            content: "";
            display: table;
            clear: both;
        }
        .row-firsts {
            margin-top: 0px;
        }
    </style>
  ''';
}