Skip to content

Commit

Permalink
[Reliability]: Convert SASS syntax to SCSS (#1520)
Browse files Browse the repository at this point in the history
* [Reliability]: Convert SASS syntax to SCSS

* Removed the setting for the extension option for sassOptions as it is now unnecessary
  • Loading branch information
berraknil committed Feb 7, 2018
1 parent 68d5c84 commit cf9ead3
Show file tree
Hide file tree
Showing 123 changed files with 7,408 additions and 5,279 deletions.
13 changes: 0 additions & 13 deletions app/styles/app/animation/barricade.sass

This file was deleted.

19 changes: 19 additions & 0 deletions app/styles/app/animation/barricade.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
.barricade {
.reflector path:last-child {
stroke: rgba(198, 52, 52, 0.8);
animation: blinking infinite 800ms ease;
animation-direction: alternate;
}
}

@keyframes blinking {
0% {
stroke-width: 0px;
stroke-opacity: 1;
}

100% {
stroke-width: 15px;
stroke-opacity: 0.4;
}
}
19 changes: 0 additions & 19 deletions app/styles/app/animation/tractor.sass

This file was deleted.

30 changes: 30 additions & 0 deletions app/styles/app/animation/tractor.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
.tractor {
@media #{$medium-up} {
width: 258px;
height: 188px;
}
}

.tractor-arm {
@media #{$medium-up} {
width: 90px;
height: 71px;
transform-origin: 89px 70px;
animation: armMovement 1.5s 1 ease;
}
}

@keyframes armMovement {
0%,
100% {
transform: rotateZ(0);
}

40% {
transform: rotateZ(-20deg);
}

70% {
transform: rotateZ(10deg);
}
}
104 changes: 0 additions & 104 deletions app/styles/app/base.sass

This file was deleted.

133 changes: 133 additions & 0 deletions app/styles/app/base.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,133 @@
*,
*:before,
*:after {
box-sizing: border-box;
}

html,
body {
height: 100%;
padding: 0;
margin: 0;
color: $asphalt-grey;
font-size: 14px;
font-weight: 400;
font-style: normal;
font-family: $font-family-sans-serif;
line-height: 1.45;
background-color: $pebble-grey;
}

h1, h2, h3, h4, h5, h6 {
font-weight: $font-weight-normal;
}

img {
max-width: 100%;
height: auto;
-ms-interpolation-mode: bicubic;
display: inline-block;
vertical-align: middle;
}

button {
background: white;
border: none;
font-family: $font-family-sans-serif;
font-size: inherit;
color: $asphalt-grey;
}

textarea {
height: auto;
min-height: 50px;
}

address {
font-style: normal;
}

select {
width: 100%;
}

strong {
font-weight: 400;
}

a {
color: $asphalt-grey;
text-decoration: none;

&:hover,
&:active {
text-decoration: none;
}
}

.display {
display: block !important;
}

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

.hidden {
display: none;
}

.pointer {
cursor: pointer;
}

.helptext {
font-size: $font-size-m;
color: $cement-grey;

@include linkStyle;
}

span.emoji.emoji-sizer {
width: 20px;
height: 20px;
margin: (-4px) 0;
display: inline-block;
background-size: contain;
}

.warning {
color: #c00;

a {
color: #c00;
text-decoration: underline;
}
}

.small-title {
font-size: 18px;
color: $oxide-blue;
}

.blank-list {
@include resetul;
}

.monospace {
font-family: Cousine, monospace;
font-size: 13px;
line-height: 1;
}

.float-right {
float: right;
}

.m-l-s {
margin-left: 0.6rem;
}

.margin-left-s {
margin-left: 10px;
}
Loading

0 comments on commit cf9ead3

Please sign in to comment.