Browse Source

Merge pull request #22 from uwu-bot/uwu-bot

Removed !important from CSS in AMP templates
Cory Sutyak 6 years ago
parent
commit
d306052f87
1 changed files with 19 additions and 19 deletions
  1. 19 19
      coderedcms/templates/coderedcms/pages/base.amp.html

+ 19 - 19
coderedcms/templates/coderedcms/pages/base.amp.html

@@ -118,91 +118,91 @@
         }
 
         .bg-primary {
-        background-color: #007bff !important;
+        background-color: #007bff;
         }
 
         a.bg-primary:hover, a.bg-primary:focus,
         button.bg-primary:hover,
         button.bg-primary:focus {
-        background-color: #0062cc !important;
+        background-color: #0062cc;
         }
 
         .bg-secondary {
-        background-color: #6c757d !important;
+        background-color: #6c757d;
         }
 
         a.bg-secondary:hover, a.bg-secondary:focus,
         button.bg-secondary:hover,
         button.bg-secondary:focus {
-        background-color: #545b62 !important;
+        background-color: #545b62;
         }
 
         .bg-success {
-        background-color: #28a745 !important;
+        background-color: #28a745;
         }
 
         a.bg-success:hover, a.bg-success:focus,
         button.bg-success:hover,
         button.bg-success:focus {
-        background-color: #1e7e34 !important;
+        background-color: #1e7e34;
         }
 
         .bg-info {
-        background-color: #17a2b8 !important;
+        background-color: #17a2b8;
         }
 
         a.bg-info:hover, a.bg-info:focus,
         button.bg-info:hover,
         button.bg-info:focus {
-        background-color: #117a8b !important;
+        background-color: #117a8b;
         }
 
         .bg-warning {
-        background-color: #ffc107 !important;
+        background-color: #ffc107;
         }
 
         a.bg-warning:hover, a.bg-warning:focus,
         button.bg-warning:hover,
         button.bg-warning:focus {
-        background-color: #d39e00 !important;
+        background-color: #d39e00;
         }
 
         .bg-danger {
-        background-color: #dc3545 !important;
+        background-color: #dc3545;
         }
 
         a.bg-danger:hover, a.bg-danger:focus,
         button.bg-danger:hover,
         button.bg-danger:focus {
-        background-color: #bd2130 !important;
+        background-color: #bd2130;
         }
 
         .bg-light {
-        background-color: #f8f9fa !important;
+        background-color: #f8f9fa;
         }
 
         a.bg-light:hover, a.bg-light:focus,
         button.bg-light:hover,
         button.bg-light:focus {
-        background-color: #dae0e5 !important;
+        background-color: #dae0e5;
         }
 
         .bg-dark {
-        background-color: #343a40 !important;
+        background-color: #343a40;
         }
 
         a.bg-dark:hover, a.bg-dark:focus,
         button.bg-dark:hover,
         button.bg-dark:focus {
-        background-color: #1d2124 !important;
+        background-color: #1d2124;
         }
 
         .bg-white {
-        background-color: #fff !important;
+        background-color: #fff;
         }
 
         .bg-transparent {
-        background-color: transparent !important;
+        background-color: transparent;
         }
         {% endblock %}
     </style>
@@ -235,4 +235,4 @@
     {% block struct_seo %}{% endblock %}
 
   </body>
-</html>
+</html>