vendor/assets/stylesheets/_reset.scss in active_frontend-6.6.2 vs vendor/assets/stylesheets/_reset.scss in active_frontend-7.0.0
- old
+ new
@@ -50,11 +50,11 @@
font-size: 100%;
font-weight: normal;
}
abbr,
acronym {
- border-bottom: 1px dotted rgba(35,41,55,1);
+ border-bottom: 1px dotted $color-black;
font-variant: normal;
}
caption,
th { text-align: left; }
fieldset,
@@ -72,12 +72,12 @@
*font-size: 100%;
font-weight: inherit;
}
html,
body {
- background: rgba(255,255,255,1);
- color: rgba(35,41,55,1);
+ background: $color-white;
+ color: $color-black;
font-family: 'Gotham', 'Helvetica', Helvetica, Arial, sans-serif;
font-size: 100%;
-webkit-font-smoothing: antialiased;
font-smooth: always;
height: 100%;
@@ -88,12 +88,12 @@
text-rendering: optimizeLegibility;
-webkit-text-size-adjust: 100%;
text-size-adjust: 100%;
}
::-moz-selection {
- background: $primary-color;
- color: rgba(255,255,255,1);
+ background: $color-primary;
+ color: $color-white;
}
::selection {
- background: $primary-color;
- color: rgba(255,255,255,1);
+ background: $color-primary;
+ color: $color-white;
}
\ No newline at end of file