: rotating_light: Lint

This commit is contained in:
Liyas Thomas
2019-10-25 13:44:34 +05:30
parent 96adfa0b5a
commit a09d7d76d3
35 changed files with 3133 additions and 2620 deletions

View File

@@ -1,13 +1,13 @@
/* Material Design Icons */
@font-face {
font-family: 'Material Icons';
font-family: "Material Icons";
font-style: normal;
font-weight: 400;
src: url(~@/assets/fonts/material-icons-v48.woff2) format('woff2');
src: url(~@/assets/fonts/material-icons-v48.woff2) format("woff2");
}
.material-icons {
font-family: 'Material Icons';
font-family: "Material Icons";
font-weight: normal;
font-style: normal;
font-size: 24px;
@@ -18,35 +18,42 @@
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-feature-settings: 'liga';
-webkit-font-feature-settings: "liga";
-webkit-font-smoothing: antialiased;
}
/* Roboto Mono 400 */
@font-face {
font-family: 'Roboto Mono';
font-family: "Roboto Mono";
font-style: normal;
font-weight: 400;
src: local('Roboto Mono'), local('RobotoMono-Regular'),
url('~@/assets/fonts/roboto-mono-v7-latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('~@/assets/fonts/roboto-mono-v7-latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
src: local("Roboto Mono"), local("RobotoMono-Regular"),
url("~@/assets/fonts/roboto-mono-v7-latin-regular.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("~@/assets/fonts/roboto-mono-v7-latin-regular.woff") format("woff");
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* Poppins 500 */
@font-face {
font-family: 'Poppins';
font-family: "Poppins";
font-style: normal;
font-weight: 500;
src: local('Poppins Medium'), local('Poppins-Medium'),
url('~@/assets/fonts/poppins-v9-latin-500.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('~@/assets/fonts/poppins-v9-latin-500.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
src: local("Poppins Medium"), local("Poppins-Medium"),
url("~@/assets/fonts/poppins-v9-latin-500.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("~@/assets/fonts/poppins-v9-latin-500.woff") format("woff");
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700 - latin */
@font-face {
font-family: 'Poppins';
font-family: "Poppins";
font-style: normal;
font-weight: 700;
src: local('Poppins Bold'), local('Poppins-Bold'),
url('~@/assets/fonts/poppins-v9-latin-700.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
url('~@/assets/fonts/poppins-v9-latin-700.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
src: local("Poppins Bold"), local("Poppins-Bold"),
url("~@/assets/fonts/poppins-v9-latin-700.woff2") format("woff2"),
/* Chrome 26+, Opera 23+, Firefox 39+ */
url("~@/assets/fonts/poppins-v9-latin-700.woff") format("woff");
/* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}

View File

@@ -2,9 +2,11 @@ $responsiveWidth: 720px;
// Make theme transition smoother.
body.afterLoad {
&, & * {
&,
& * {
transition: background-color 0.2s ease-in-out,
border 0.2s ease-in-out;
border 0.2s ease-in-out;
}
}
@@ -180,7 +182,7 @@ h3.title {
header,
footer {
& > div {
&>div {
display: flex;
padding: 16px;
width: 100%;
@@ -218,7 +220,6 @@ button {
transition: all 0.2s ease-in-out;
fill: var(--act-color);
height: 40px;
box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.02);
cursor: pointer;
span {
@@ -353,7 +354,7 @@ input[type="checkbox"] {
display: none;
&,
& + label {
&+label {
vertical-align: middle;
cursor: pointer;
@@ -372,7 +373,7 @@ input[type="checkbox"] {
}
}
&:checked + label:before {
&:checked+label:before {
background-color: var(--ac-color);
border-color: var(--ac-color);
color: var(--act-color);
@@ -567,7 +568,7 @@ div.tab {
display: none;
}
input[type="radio"] + label {
input[type="radio"]+label {
padding: 8px 16px;
border-bottom: 2px solid transparent;
cursor: pointer;
@@ -578,11 +579,11 @@ input[type="radio"] + label {
}
}
input[type="radio"]:checked + label {
input[type="radio"]:checked+label {
border-color: var(--fg-color);
}
input[type="radio"]:checked + label + div.tab {
input[type="radio"]:checked+label+div.tab {
display: block;
}

View File

@@ -1,6 +1,5 @@
/**
Main Themes:
- dark (default)
- light
- black
@@ -33,6 +32,7 @@
:root {
@include darkTheme;
}
@media(prefers-color-scheme: dark) {
:root.auto {
@include darkTheme;
@@ -64,6 +64,7 @@
:root.light {
@include lightTheme;
}
@media(prefers-color-scheme: light) {
:root.auto {
@include lightTheme;
@@ -91,6 +92,7 @@
// Active text color
--act-color: #000000;
}
:root.black {
@include blackTheme;
}