scss_ninja 0.1.0 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/CHANGELOG.md +11 -0
 - data/README.md +78 -4
 - data/app/assets/stylesheets/border&radius.scss +174 -0
 - data/app/assets/stylesheets/cards.scss +119 -0
 - data/app/assets/stylesheets/carousel.scss +61 -0
 - data/app/assets/stylesheets/columns.scss +228 -0
 - data/app/assets/stylesheets/css/border&radius.css +228 -0
 - data/app/assets/stylesheets/css/buttons.css +72 -0
 - data/app/assets/stylesheets/css/cards.css +157 -0
 - data/app/assets/stylesheets/css/carousel.css +13872 -0
 - data/app/assets/stylesheets/css/columns.css +438 -0
 - data/app/assets/stylesheets/css/forms.css +46 -0
 - data/app/assets/stylesheets/css/heights.css +80 -0
 - data/app/assets/stylesheets/css/margins&paddings.css +390 -0
 - data/app/assets/stylesheets/css/modals.css +58 -0
 - data/app/assets/stylesheets/css/nav.css +259 -0
 - data/app/assets/stylesheets/css/opacity.css +40 -0
 - data/app/assets/stylesheets/css/scss_ninja.css +14 -0
 - data/app/assets/stylesheets/css/slidebtn.css +59 -0
 - data/app/assets/stylesheets/css/tables.css +610 -0
 - data/app/assets/stylesheets/css/texts&backgrounds.css +392 -0
 - data/app/assets/stylesheets/forms.scss +40 -0
 - data/app/assets/stylesheets/margins&paddings.scss +174 -30
 - data/app/assets/stylesheets/modals.scss +53 -0
 - data/app/assets/stylesheets/nav.scss +248 -0
 - data/app/assets/stylesheets/opacity.scss +5 -0
 - data/app/assets/stylesheets/scss_ninja.scss +8 -474
 - data/app/assets/stylesheets/tables.scss +571 -0
 - data/app/assets/stylesheets/texts&backgrounds.scss +12 -0
 - data/lib/scss_ninja/version.rb +1 -1
 - data/lib/scss_ninja.rb +1 -1
 - data/scss_ninja.gemspec +1 -1
 - metadata +26 -3
 
| 
         @@ -0,0 +1,571 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            .table {
         
     | 
| 
      
 2 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 3 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 4 
     | 
    
         
            +
              background: rgb(177, 174, 174);
         
     | 
| 
      
 5 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 6 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 7 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 10 
     | 
    
         
            +
                th {
         
     | 
| 
      
 11 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 12 
     | 
    
         
            +
                  color: #7a3f07;
         
     | 
| 
      
 13 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 14 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 15 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 16 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 17 
     | 
    
         
            +
                }
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                td {
         
     | 
| 
      
 20 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 21 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 22 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 25 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 26 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 27 
     | 
    
         
            +
                  }
         
     | 
| 
      
 28 
     | 
    
         
            +
                }
         
     | 
| 
      
 29 
     | 
    
         
            +
              }
         
     | 
| 
      
 30 
     | 
    
         
            +
             
     | 
| 
      
 31 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 32 
     | 
    
         
            +
                background: rgb(253, 251, 251);
         
     | 
| 
      
 33 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 34 
     | 
    
         
            +
                color: black;
         
     | 
| 
      
 35 
     | 
    
         
            +
              }
         
     | 
| 
      
 36 
     | 
    
         
            +
             
     | 
| 
      
 37 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 38 
     | 
    
         
            +
                background: rgb(233, 231, 231);
         
     | 
| 
      
 39 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 40 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 41 
     | 
    
         
            +
                  background-color: #a5a6a7;
         
     | 
| 
      
 42 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 43 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 44 
     | 
    
         
            +
                }
         
     | 
| 
      
 45 
     | 
    
         
            +
              }
         
     | 
| 
      
 46 
     | 
    
         
            +
            }
         
     | 
| 
      
 47 
     | 
    
         
            +
             
     | 
| 
      
 48 
     | 
    
         
            +
            .table-b-p-e {
         
     | 
| 
      
 49 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 50 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 51 
     | 
    
         
            +
              background: #012b39;
         
     | 
| 
      
 52 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 53 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 54 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
      
 56 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 57 
     | 
    
         
            +
                th {
         
     | 
| 
      
 58 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 59 
     | 
    
         
            +
                  color: #e2b842;
         
     | 
| 
      
 60 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 61 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 62 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 63 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 64 
     | 
    
         
            +
                }
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
                td {
         
     | 
| 
      
 67 
     | 
    
         
            +
                  color: #fff;
         
     | 
| 
      
 68 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 69 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 70 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 73 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 74 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 75 
     | 
    
         
            +
                  }
         
     | 
| 
      
 76 
     | 
    
         
            +
                }
         
     | 
| 
      
 77 
     | 
    
         
            +
              }
         
     | 
| 
      
 78 
     | 
    
         
            +
             
     | 
| 
      
 79 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 80 
     | 
    
         
            +
                background-color: #012b39;
         
     | 
| 
      
 81 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 82 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 83 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 84 
     | 
    
         
            +
                  color: #000000;
         
     | 
| 
      
 85 
     | 
    
         
            +
                }
         
     | 
| 
      
 86 
     | 
    
         
            +
              }
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 89 
     | 
    
         
            +
                background: #e4a9a9;
         
     | 
| 
      
 90 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 91 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 92 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 93 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 94 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 95 
     | 
    
         
            +
                }
         
     | 
| 
      
 96 
     | 
    
         
            +
              }
         
     | 
| 
      
 97 
     | 
    
         
            +
            }
         
     | 
| 
      
 98 
     | 
    
         
            +
             
     | 
| 
      
 99 
     | 
    
         
            +
            .table-b-p-o {
         
     | 
| 
      
 100 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 101 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 102 
     | 
    
         
            +
              background: #012b39;
         
     | 
| 
      
 103 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 104 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 105 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 106 
     | 
    
         
            +
             
     | 
| 
      
 107 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 108 
     | 
    
         
            +
                th {
         
     | 
| 
      
 109 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 110 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 111 
     | 
    
         
            +
                  color: #e2b842;
         
     | 
| 
      
 112 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 113 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 114 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 115 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 116 
     | 
    
         
            +
                }
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
                td {
         
     | 
| 
      
 119 
     | 
    
         
            +
                  color: #fff;
         
     | 
| 
      
 120 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 121 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 122 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 125 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 126 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 127 
     | 
    
         
            +
                  }
         
     | 
| 
      
 128 
     | 
    
         
            +
                }
         
     | 
| 
      
 129 
     | 
    
         
            +
              }
         
     | 
| 
      
 130 
     | 
    
         
            +
             
     | 
| 
      
 131 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 132 
     | 
    
         
            +
                background: #e4a9a9;
         
     | 
| 
      
 133 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 134 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 135 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 136 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 137 
     | 
    
         
            +
                }
         
     | 
| 
      
 138 
     | 
    
         
            +
              }
         
     | 
| 
      
 139 
     | 
    
         
            +
             
     | 
| 
      
 140 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 141 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 142 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 143 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 144 
     | 
    
         
            +
                  color: #e4a9a9;
         
     | 
| 
      
 145 
     | 
    
         
            +
                }
         
     | 
| 
      
 146 
     | 
    
         
            +
              }
         
     | 
| 
      
 147 
     | 
    
         
            +
            }
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
            /* ##### White - GRAY tables ##### */
         
     | 
| 
      
 150 
     | 
    
         
            +
            .table-b-w-o {
         
     | 
| 
      
 151 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 152 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 153 
     | 
    
         
            +
              background: #727575;
         
     | 
| 
      
 154 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 155 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 156 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 159 
     | 
    
         
            +
                th {
         
     | 
| 
      
 160 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 161 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 162 
     | 
    
         
            +
                  color: #e2b842;
         
     | 
| 
      
 163 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 164 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 165 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 166 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 167 
     | 
    
         
            +
                }
         
     | 
| 
      
 168 
     | 
    
         
            +
             
     | 
| 
      
 169 
     | 
    
         
            +
                td {
         
     | 
| 
      
 170 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 171 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 172 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 173 
     | 
    
         
            +
             
     | 
| 
      
 174 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 175 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 176 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 177 
     | 
    
         
            +
                  }
         
     | 
| 
      
 178 
     | 
    
         
            +
                }
         
     | 
| 
      
 179 
     | 
    
         
            +
              }
         
     | 
| 
      
 180 
     | 
    
         
            +
             
     | 
| 
      
 181 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 182 
     | 
    
         
            +
                background: #727575;
         
     | 
| 
      
 183 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 184 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 185 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 186 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 187 
     | 
    
         
            +
                }
         
     | 
| 
      
 188 
     | 
    
         
            +
              }
         
     | 
| 
      
 189 
     | 
    
         
            +
             
     | 
| 
      
 190 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 191 
     | 
    
         
            +
                background: #cdd1d1;
         
     | 
| 
      
 192 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 193 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 194 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 195 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 196 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 197 
     | 
    
         
            +
                }
         
     | 
| 
      
 198 
     | 
    
         
            +
              }
         
     | 
| 
      
 199 
     | 
    
         
            +
            }
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
            .table-b-w-e {
         
     | 
| 
      
 202 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 203 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 204 
     | 
    
         
            +
              background: #727575;
         
     | 
| 
      
 205 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 206 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 207 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 208 
     | 
    
         
            +
             
     | 
| 
      
 209 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 210 
     | 
    
         
            +
                th {
         
     | 
| 
      
 211 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 212 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 213 
     | 
    
         
            +
                  color: #e2b842;
         
     | 
| 
      
 214 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 215 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 216 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 217 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 218 
     | 
    
         
            +
                }
         
     | 
| 
      
 219 
     | 
    
         
            +
             
     | 
| 
      
 220 
     | 
    
         
            +
                td {
         
     | 
| 
      
 221 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 222 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 223 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 224 
     | 
    
         
            +
             
     | 
| 
      
 225 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 226 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 227 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 228 
     | 
    
         
            +
                  }
         
     | 
| 
      
 229 
     | 
    
         
            +
                }
         
     | 
| 
      
 230 
     | 
    
         
            +
              }
         
     | 
| 
      
 231 
     | 
    
         
            +
             
     | 
| 
      
 232 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 233 
     | 
    
         
            +
                background: #cdd1d1;
         
     | 
| 
      
 234 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 235 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 236 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 237 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 238 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 239 
     | 
    
         
            +
                }
         
     | 
| 
      
 240 
     | 
    
         
            +
              }
         
     | 
| 
      
 241 
     | 
    
         
            +
             
     | 
| 
      
 242 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 243 
     | 
    
         
            +
                background: #727575;
         
     | 
| 
      
 244 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 245 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 246 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 247 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 248 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 249 
     | 
    
         
            +
                }
         
     | 
| 
      
 250 
     | 
    
         
            +
              }
         
     | 
| 
      
 251 
     | 
    
         
            +
            }
         
     | 
| 
      
 252 
     | 
    
         
            +
             
     | 
| 
      
 253 
     | 
    
         
            +
            /* ##### Pink - GRAY tables ##### */
         
     | 
| 
      
 254 
     | 
    
         
            +
            .table-p-g-o {
         
     | 
| 
      
 255 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 256 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 257 
     | 
    
         
            +
              background: #8f0b63;
         
     | 
| 
      
 258 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 259 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 260 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 261 
     | 
    
         
            +
             
     | 
| 
      
 262 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 263 
     | 
    
         
            +
                th {
         
     | 
| 
      
 264 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 265 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 266 
     | 
    
         
            +
                  color: #f1e8cc;
         
     | 
| 
      
 267 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 268 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 269 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 270 
     | 
    
         
            +
                  text-shadow: 2px 2px rgb(97, 95, 95);
         
     | 
| 
      
 271 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 272 
     | 
    
         
            +
                }
         
     | 
| 
      
 273 
     | 
    
         
            +
             
     | 
| 
      
 274 
     | 
    
         
            +
                td {
         
     | 
| 
      
 275 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 276 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 277 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 278 
     | 
    
         
            +
             
     | 
| 
      
 279 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 280 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 281 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 282 
     | 
    
         
            +
                  }
         
     | 
| 
      
 283 
     | 
    
         
            +
                }
         
     | 
| 
      
 284 
     | 
    
         
            +
              }
         
     | 
| 
      
 285 
     | 
    
         
            +
             
     | 
| 
      
 286 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 287 
     | 
    
         
            +
                background: #cdd1d1;
         
     | 
| 
      
 288 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 289 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 290 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 291 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 292 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 293 
     | 
    
         
            +
                }
         
     | 
| 
      
 294 
     | 
    
         
            +
              }
         
     | 
| 
      
 295 
     | 
    
         
            +
             
     | 
| 
      
 296 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 297 
     | 
    
         
            +
                background: #ec0ba1;
         
     | 
| 
      
 298 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 299 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 300 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 301 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 302 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 303 
     | 
    
         
            +
                }
         
     | 
| 
      
 304 
     | 
    
         
            +
              }
         
     | 
| 
      
 305 
     | 
    
         
            +
            }
         
     | 
| 
      
 306 
     | 
    
         
            +
             
     | 
| 
      
 307 
     | 
    
         
            +
            .table-p-g-e {
         
     | 
| 
      
 308 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 309 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 310 
     | 
    
         
            +
              background: #8f0b63;
         
     | 
| 
      
 311 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 312 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 313 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 314 
     | 
    
         
            +
             
     | 
| 
      
 315 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 316 
     | 
    
         
            +
                th {
         
     | 
| 
      
 317 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 318 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 319 
     | 
    
         
            +
                  color: #f1e8cc;
         
     | 
| 
      
 320 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 321 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 322 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 323 
     | 
    
         
            +
                  text-shadow: 2px 2px rgb(97, 95, 95);
         
     | 
| 
      
 324 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 325 
     | 
    
         
            +
                }
         
     | 
| 
      
 326 
     | 
    
         
            +
             
     | 
| 
      
 327 
     | 
    
         
            +
                td {
         
     | 
| 
      
 328 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 329 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 330 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 331 
     | 
    
         
            +
             
     | 
| 
      
 332 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 333 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 334 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 335 
     | 
    
         
            +
                  }
         
     | 
| 
      
 336 
     | 
    
         
            +
                }
         
     | 
| 
      
 337 
     | 
    
         
            +
              }
         
     | 
| 
      
 338 
     | 
    
         
            +
             
     | 
| 
      
 339 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 340 
     | 
    
         
            +
                background: #ec0ba1;
         
     | 
| 
      
 341 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 342 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 343 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 344 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 345 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 346 
     | 
    
         
            +
                }
         
     | 
| 
      
 347 
     | 
    
         
            +
              }
         
     | 
| 
      
 348 
     | 
    
         
            +
             
     | 
| 
      
 349 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 350 
     | 
    
         
            +
                background: #cdd1d1;
         
     | 
| 
      
 351 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 352 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 353 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 354 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 355 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 356 
     | 
    
         
            +
                }
         
     | 
| 
      
 357 
     | 
    
         
            +
              }
         
     | 
| 
      
 358 
     | 
    
         
            +
            }
         
     | 
| 
      
 359 
     | 
    
         
            +
            /* ##### ORANGE - GRAY tables ##### */
         
     | 
| 
      
 360 
     | 
    
         
            +
            .table-o-g-o {
         
     | 
| 
      
 361 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 362 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 363 
     | 
    
         
            +
              background: #eb6c05;
         
     | 
| 
      
 364 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 365 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 366 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 367 
     | 
    
         
            +
             
     | 
| 
      
 368 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 369 
     | 
    
         
            +
                th {
         
     | 
| 
      
 370 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 371 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 372 
     | 
    
         
            +
                  color: #f1e8cc;
         
     | 
| 
      
 373 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 374 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 375 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 376 
     | 
    
         
            +
                  text-shadow: 2px 2px rgb(97, 95, 95);
         
     | 
| 
      
 377 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 378 
     | 
    
         
            +
                }
         
     | 
| 
      
 379 
     | 
    
         
            +
             
     | 
| 
      
 380 
     | 
    
         
            +
                td {
         
     | 
| 
      
 381 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 382 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 383 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 384 
     | 
    
         
            +
             
     | 
| 
      
 385 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 386 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 387 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 388 
     | 
    
         
            +
                  }
         
     | 
| 
      
 389 
     | 
    
         
            +
                }
         
     | 
| 
      
 390 
     | 
    
         
            +
              }
         
     | 
| 
      
 391 
     | 
    
         
            +
             
     | 
| 
      
 392 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 393 
     | 
    
         
            +
                background: #eb6c05;
         
     | 
| 
      
 394 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 395 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 396 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 397 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 398 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 399 
     | 
    
         
            +
                }
         
     | 
| 
      
 400 
     | 
    
         
            +
              }
         
     | 
| 
      
 401 
     | 
    
         
            +
             
     | 
| 
      
 402 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 403 
     | 
    
         
            +
                background: rgb(189, 186, 186);
         
     | 
| 
      
 404 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 405 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 406 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 407 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 408 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 409 
     | 
    
         
            +
                }
         
     | 
| 
      
 410 
     | 
    
         
            +
              }
         
     | 
| 
      
 411 
     | 
    
         
            +
            }
         
     | 
| 
      
 412 
     | 
    
         
            +
             
     | 
| 
      
 413 
     | 
    
         
            +
            .table-o-g-e {
         
     | 
| 
      
 414 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 415 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 416 
     | 
    
         
            +
              background: #eb6c05;
         
     | 
| 
      
 417 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 418 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 419 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 420 
     | 
    
         
            +
             
     | 
| 
      
 421 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 422 
     | 
    
         
            +
                th {
         
     | 
| 
      
 423 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 424 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 425 
     | 
    
         
            +
                  color: #f1e8cc;
         
     | 
| 
      
 426 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 427 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 428 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 429 
     | 
    
         
            +
                  text-shadow: 2px 2px rgb(97, 95, 95);
         
     | 
| 
      
 430 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 431 
     | 
    
         
            +
                }
         
     | 
| 
      
 432 
     | 
    
         
            +
             
     | 
| 
      
 433 
     | 
    
         
            +
                td {
         
     | 
| 
      
 434 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 435 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 436 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 437 
     | 
    
         
            +
             
     | 
| 
      
 438 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 439 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 440 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 441 
     | 
    
         
            +
                  }
         
     | 
| 
      
 442 
     | 
    
         
            +
                }
         
     | 
| 
      
 443 
     | 
    
         
            +
              }
         
     | 
| 
      
 444 
     | 
    
         
            +
             
     | 
| 
      
 445 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 446 
     | 
    
         
            +
                background: rgb(189, 186, 186);
         
     | 
| 
      
 447 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 448 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 449 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 450 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 451 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 452 
     | 
    
         
            +
                }
         
     | 
| 
      
 453 
     | 
    
         
            +
              }
         
     | 
| 
      
 454 
     | 
    
         
            +
             
     | 
| 
      
 455 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 456 
     | 
    
         
            +
                background: #eb6c05;
         
     | 
| 
      
 457 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 458 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 459 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 460 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 461 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 462 
     | 
    
         
            +
                }
         
     | 
| 
      
 463 
     | 
    
         
            +
              }
         
     | 
| 
      
 464 
     | 
    
         
            +
            }
         
     | 
| 
      
 465 
     | 
    
         
            +
             
     | 
| 
      
 466 
     | 
    
         
            +
            /* #### ORANGE - PINK TABLES #### */
         
     | 
| 
      
 467 
     | 
    
         
            +
            .table-o-p-e {
         
     | 
| 
      
 468 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 469 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 470 
     | 
    
         
            +
              background: #eb6c05;
         
     | 
| 
      
 471 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 472 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 473 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 474 
     | 
    
         
            +
             
     | 
| 
      
 475 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 476 
     | 
    
         
            +
                th {
         
     | 
| 
      
 477 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 478 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 479 
     | 
    
         
            +
                  color: #f1e8cc;
         
     | 
| 
      
 480 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 481 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 482 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 483 
     | 
    
         
            +
                  text-shadow: 2px 2px rgb(97, 95, 95);
         
     | 
| 
      
 484 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 485 
     | 
    
         
            +
                }
         
     | 
| 
      
 486 
     | 
    
         
            +
             
     | 
| 
      
 487 
     | 
    
         
            +
                td {
         
     | 
| 
      
 488 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 489 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 490 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 491 
     | 
    
         
            +
             
     | 
| 
      
 492 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 493 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 494 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 495 
     | 
    
         
            +
                  }
         
     | 
| 
      
 496 
     | 
    
         
            +
                }
         
     | 
| 
      
 497 
     | 
    
         
            +
              }
         
     | 
| 
      
 498 
     | 
    
         
            +
             
     | 
| 
      
 499 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 500 
     | 
    
         
            +
                background: rgb(206, 11, 131);
         
     | 
| 
      
 501 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 502 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 503 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 504 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 505 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 506 
     | 
    
         
            +
                }
         
     | 
| 
      
 507 
     | 
    
         
            +
              }
         
     | 
| 
      
 508 
     | 
    
         
            +
             
     | 
| 
      
 509 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 510 
     | 
    
         
            +
                background: #eb6c05;
         
     | 
| 
      
 511 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 512 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 513 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 514 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 515 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 516 
     | 
    
         
            +
                }
         
     | 
| 
      
 517 
     | 
    
         
            +
              }
         
     | 
| 
      
 518 
     | 
    
         
            +
            }
         
     | 
| 
      
 519 
     | 
    
         
            +
             
     | 
| 
      
 520 
     | 
    
         
            +
            .table-o-p-o {
         
     | 
| 
      
 521 
     | 
    
         
            +
              font-family: 'Times New Roman', Times, serif;
         
     | 
| 
      
 522 
     | 
    
         
            +
              width: 100%;
         
     | 
| 
      
 523 
     | 
    
         
            +
              background: #eb6c05;
         
     | 
| 
      
 524 
     | 
    
         
            +
              border: 1px solid rgb(133, 102, 102);
         
     | 
| 
      
 525 
     | 
    
         
            +
              border-radius: 10px;
         
     | 
| 
      
 526 
     | 
    
         
            +
              box-shadow: 5px 10px rgb(233, 232, 232);
         
     | 
| 
      
 527 
     | 
    
         
            +
             
     | 
| 
      
 528 
     | 
    
         
            +
              tr {
         
     | 
| 
      
 529 
     | 
    
         
            +
                th {
         
     | 
| 
      
 530 
     | 
    
         
            +
                  width: inherit;
         
     | 
| 
      
 531 
     | 
    
         
            +
                  // background-color: #000a0e;
         
     | 
| 
      
 532 
     | 
    
         
            +
                  color: #f1e8cc;
         
     | 
| 
      
 533 
     | 
    
         
            +
                  font-weight: 900;
         
     | 
| 
      
 534 
     | 
    
         
            +
                  font-size: 19px;
         
     | 
| 
      
 535 
     | 
    
         
            +
                  padding: 0.75em 1em;
         
     | 
| 
      
 536 
     | 
    
         
            +
                  text-shadow: 2px 2px rgb(97, 95, 95);
         
     | 
| 
      
 537 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 538 
     | 
    
         
            +
                }
         
     | 
| 
      
 539 
     | 
    
         
            +
             
     | 
| 
      
 540 
     | 
    
         
            +
                td {
         
     | 
| 
      
 541 
     | 
    
         
            +
                  padding: 0.65em 1em;
         
     | 
| 
      
 542 
     | 
    
         
            +
                  text-align: center;
         
     | 
| 
      
 543 
     | 
    
         
            +
                  font-weight: 600;
         
     | 
| 
      
 544 
     | 
    
         
            +
             
     | 
| 
      
 545 
     | 
    
         
            +
                  a {
         
     | 
| 
      
 546 
     | 
    
         
            +
                    text-decoration: none;
         
     | 
| 
      
 547 
     | 
    
         
            +
                    color: inherit;
         
     | 
| 
      
 548 
     | 
    
         
            +
                  }
         
     | 
| 
      
 549 
     | 
    
         
            +
                }
         
     | 
| 
      
 550 
     | 
    
         
            +
              }
         
     | 
| 
      
 551 
     | 
    
         
            +
             
     | 
| 
      
 552 
     | 
    
         
            +
              tbody tr:nth-child(odd) {
         
     | 
| 
      
 553 
     | 
    
         
            +
                background: #eb6c05;
         
     | 
| 
      
 554 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 555 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 556 
     | 
    
         
            +
                  background-color: #e4a9a9;
         
     | 
| 
      
 557 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 558 
     | 
    
         
            +
                  color: black;
         
     | 
| 
      
 559 
     | 
    
         
            +
                }
         
     | 
| 
      
 560 
     | 
    
         
            +
              }
         
     | 
| 
      
 561 
     | 
    
         
            +
             
     | 
| 
      
 562 
     | 
    
         
            +
              tbody tr:nth-child(even) {
         
     | 
| 
      
 563 
     | 
    
         
            +
                background: rgb(206, 11, 131);
         
     | 
| 
      
 564 
     | 
    
         
            +
                box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
         
     | 
| 
      
 565 
     | 
    
         
            +
                &:hover {
         
     | 
| 
      
 566 
     | 
    
         
            +
                  background-color: #012b39;
         
     | 
| 
      
 567 
     | 
    
         
            +
                  transition: all 0.1s ease-in-out;
         
     | 
| 
      
 568 
     | 
    
         
            +
                  color: #000000 !important;
         
     | 
| 
      
 569 
     | 
    
         
            +
                }
         
     | 
| 
      
 570 
     | 
    
         
            +
              }
         
     | 
| 
      
 571 
     | 
    
         
            +
            }
         
     | 
| 
         @@ -377,4 +377,16 @@ 
     | 
|
| 
       377 
377 
     | 
    
         | 
| 
       378 
378 
     | 
    
         
             
            .grdx-pri-orn {
         
     | 
| 
       379 
379 
     | 
    
         
             
              background: linear-gradient(to right, #66ffcc 0%, #ff9933 71%);
         
     | 
| 
      
 380 
     | 
    
         
            +
            }
         
     | 
| 
      
 381 
     | 
    
         
            +
             
     | 
| 
      
 382 
     | 
    
         
            +
            .rrg-red-orn-grn {
         
     | 
| 
      
 383 
     | 
    
         
            +
              background-image: repeating-radial-gradient(red, yellow 10%, green 15%);
         
     | 
| 
      
 384 
     | 
    
         
            +
            }
         
     | 
| 
      
 385 
     | 
    
         
            +
             
     | 
| 
      
 386 
     | 
    
         
            +
            .rrg-red-orn-pri {
         
     | 
| 
      
 387 
     | 
    
         
            +
              background-image: repeating-radial-gradient(red, yellow 10%, cyan 15%);
         
     | 
| 
      
 388 
     | 
    
         
            +
            }
         
     | 
| 
      
 389 
     | 
    
         
            +
             
     | 
| 
      
 390 
     | 
    
         
            +
            .rrg-red-orn-pnk {
         
     | 
| 
      
 391 
     | 
    
         
            +
              background-image: repeating-radial-gradient(red, yellow 10%, rgb(219, 8, 202) 15%);
         
     | 
| 
       380 
392 
     | 
    
         
             
            }
         
     | 
    
        data/lib/scss_ninja/version.rb
    CHANGED
    
    
    
        data/lib/scss_ninja.rb
    CHANGED
    
    
    
        data/scss_ninja.gemspec
    CHANGED
    
    | 
         @@ -18,7 +18,7 @@ Gem::Specification.new do |spec| 
     | 
|
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
              spec.metadata["homepage_uri"] = spec.homepage
         
     | 
| 
       20 
20 
     | 
    
         
             
              spec.metadata["source_code_uri"] = "https://github.com/tongoonamujera/scss_ninja.git"
         
     | 
| 
       21 
     | 
    
         
            -
              spec.metadata["changelog_uri"] = "https://github. 
     | 
| 
      
 21 
     | 
    
         
            +
              spec.metadata["changelog_uri"] = "https://tongoonamujera.github.io/scss_ninja/CHANGELOG.md"
         
     | 
| 
       22 
22 
     | 
    
         | 
| 
       23 
23 
     | 
    
         
             
              # Specify which files should be added to the gem when it is released.
         
     | 
| 
       24 
24 
     | 
    
         
             
              # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,14 +1,14 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: scss_ninja
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.4
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - tongoonamujera
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2021- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2021-11-04 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: autoprefixer-rails
         
     | 
| 
         @@ -47,12 +47,35 @@ files: 
     | 
|
| 
       47 
47 
     | 
    
         
             
            - LICENSE.txt
         
     | 
| 
       48 
48 
     | 
    
         
             
            - README.md
         
     | 
| 
       49 
49 
     | 
    
         
             
            - Rakefile
         
     | 
| 
      
 50 
     | 
    
         
            +
            - app/assets/stylesheets/border&radius.scss
         
     | 
| 
       50 
51 
     | 
    
         
             
            - app/assets/stylesheets/buttons.scss
         
     | 
| 
      
 52 
     | 
    
         
            +
            - app/assets/stylesheets/cards.scss
         
     | 
| 
       51 
53 
     | 
    
         
             
            - app/assets/stylesheets/carousel.scss
         
     | 
| 
      
 54 
     | 
    
         
            +
            - app/assets/stylesheets/columns.scss
         
     | 
| 
      
 55 
     | 
    
         
            +
            - app/assets/stylesheets/css/border&radius.css
         
     | 
| 
      
 56 
     | 
    
         
            +
            - app/assets/stylesheets/css/buttons.css
         
     | 
| 
      
 57 
     | 
    
         
            +
            - app/assets/stylesheets/css/cards.css
         
     | 
| 
      
 58 
     | 
    
         
            +
            - app/assets/stylesheets/css/carousel.css
         
     | 
| 
      
 59 
     | 
    
         
            +
            - app/assets/stylesheets/css/columns.css
         
     | 
| 
      
 60 
     | 
    
         
            +
            - app/assets/stylesheets/css/forms.css
         
     | 
| 
      
 61 
     | 
    
         
            +
            - app/assets/stylesheets/css/heights.css
         
     | 
| 
      
 62 
     | 
    
         
            +
            - app/assets/stylesheets/css/margins&paddings.css
         
     | 
| 
      
 63 
     | 
    
         
            +
            - app/assets/stylesheets/css/modals.css
         
     | 
| 
      
 64 
     | 
    
         
            +
            - app/assets/stylesheets/css/nav.css
         
     | 
| 
      
 65 
     | 
    
         
            +
            - app/assets/stylesheets/css/opacity.css
         
     | 
| 
      
 66 
     | 
    
         
            +
            - app/assets/stylesheets/css/scss_ninja.css
         
     | 
| 
      
 67 
     | 
    
         
            +
            - app/assets/stylesheets/css/slidebtn.css
         
     | 
| 
      
 68 
     | 
    
         
            +
            - app/assets/stylesheets/css/tables.css
         
     | 
| 
      
 69 
     | 
    
         
            +
            - app/assets/stylesheets/css/texts&backgrounds.css
         
     | 
| 
      
 70 
     | 
    
         
            +
            - app/assets/stylesheets/forms.scss
         
     | 
| 
       52 
71 
     | 
    
         
             
            - app/assets/stylesheets/heights.scss
         
     | 
| 
       53 
72 
     | 
    
         
             
            - app/assets/stylesheets/margins&paddings.scss
         
     | 
| 
      
 73 
     | 
    
         
            +
            - app/assets/stylesheets/modals.scss
         
     | 
| 
      
 74 
     | 
    
         
            +
            - app/assets/stylesheets/nav.scss
         
     | 
| 
      
 75 
     | 
    
         
            +
            - app/assets/stylesheets/opacity.scss
         
     | 
| 
       54 
76 
     | 
    
         
             
            - app/assets/stylesheets/scss_ninja.scss
         
     | 
| 
       55 
77 
     | 
    
         
             
            - app/assets/stylesheets/slidebtn.scss
         
     | 
| 
      
 78 
     | 
    
         
            +
            - app/assets/stylesheets/tables.scss
         
     | 
| 
       56 
79 
     | 
    
         
             
            - app/assets/stylesheets/texts&backgrounds.scss
         
     | 
| 
       57 
80 
     | 
    
         
             
            - bin/console
         
     | 
| 
       58 
81 
     | 
    
         
             
            - bin/setup
         
     | 
| 
         @@ -66,7 +89,7 @@ licenses: 
     | 
|
| 
       66 
89 
     | 
    
         
             
            metadata:
         
     | 
| 
       67 
90 
     | 
    
         
             
              homepage_uri: https://github.com/tongoonamujera/scss_ninja.git
         
     | 
| 
       68 
91 
     | 
    
         
             
              source_code_uri: https://github.com/tongoonamujera/scss_ninja.git
         
     | 
| 
       69 
     | 
    
         
            -
              changelog_uri: https://github. 
     | 
| 
      
 92 
     | 
    
         
            +
              changelog_uri: https://tongoonamujera.github.io/scss_ninja/CHANGELOG.md
         
     | 
| 
       70 
93 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       71 
94 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       72 
95 
     | 
    
         
             
            require_paths:
         
     |