1
0
mirror of synced 2024-11-21 21:06:04 +03:00

Removed css styles

This commit is contained in:
1on 2020-05-21 14:25:16 +03:00
parent 6d0b69904d
commit 6a1ea3faf9
7 changed files with 1 additions and 980 deletions

View File

@ -11,6 +11,3 @@ insert_final_newline = true
[*.md]
trim_trailing_whitespace = false
[*.scss]
indent_size = 2

View File

@ -44,7 +44,6 @@ export default {
</script>
<style lang="scss">
@import '../themes/snow/snow.scss';
body {
margin: 0;
padding: 0;

View File

@ -12,11 +12,10 @@
"./sfc": "src/Formulate.js"
},
"scripts": {
"build": "npm run build:esm & npm run build:umd & npm run build:iife & npm run build:css & wait && echo \"Build complete:\nesm: $(gzip -c dist/formulate.esm.js | wc -c)b gzip\numd: $(gzip -c dist/formulate.umd.js | wc -c)b gzip\nmin: $(gzip -c dist/formulate.min.js | wc -c)b gzip\"",
"build": "npm run build:esm & npm run build:umd & npm run build:iife & wait && echo \"Build complete:\nesm: $(gzip -c dist/formulate.esm.js | wc -c)b gzip\numd: $(gzip -c dist/formulate.umd.js | wc -c)b gzip\nmin: $(gzip -c dist/formulate.min.js | wc -c)b gzip\"",
"build:esm": "rollup --config build/rollup.config.js --format es --file dist/formulate.esm.js",
"build:umd": "rollup --config build/rollup.config.js --format umd --file dist/formulate.umd.js",
"build:iife": "rollup --config build/rollup.iife.config.js --format iife --file dist/formulate.min.js",
"build:css": "node-sass themes/snow/snow.scss dist/snow.css && postcss --use autoprefixer -b '> 2%' < dist/snow.css | postcss --no-map --use cssnano > dist/snow.min.css",
"test": "NODE_ENV=test jest --config test/jest.conf.js",
"test:watch": "NODE_ENV=test jest --config test/jest.conf.js --watch",
"test:coverage": "NODE_ENV=test jest --config test/jest.conf.js --coverage",
@ -57,7 +56,6 @@
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.5.1",
"cssnano": "^4.1.10",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
@ -68,16 +66,12 @@
"flush-promises": "^1.0.2",
"jest": "^25.5.4",
"jest-vue-preprocessor": "^1.7.1",
"node-sass": "^4.14.1",
"postcss": "^7.0.30",
"postcss-cli": "^7.1.1",
"rollup": "^1.32.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-internal": "^1.0.4",
"rollup-plugin-multi-input": "^1.1.1",
"rollup-plugin-terser": "^5.3.0",
"rollup-plugin-vue": "^5.1.7",
"sass-loader": "^8.0.2",
"typescript": "^3.9.2",
"vue": "^2.6.11",
"vue-jest": "^3.0.5",

View File

@ -1,121 +0,0 @@
// Formulate inputs
// -----------------------------------------------------------------------------
.formulate-input {
// global wrapper styles
.formulate-input-label {
// global label styles
}
.formulate-input-element {
// Global field-level wrapper styles
}
.formulate-input-help {
// Global help text styles
}
.formulate-input-errors {
// Global error message list wrapper
}
.formulate-input-error,
.formulate-file-upload-error {
// Error message styles
}
.formulate-input-group-item {
// Group of items (like list of checkboxes) wrapper
}
// Text inputs
// -----------------------------------------------------------------------------
&[data-classification='text'] {
input {
// Style all text-like input elements
}
}
// Slider inputs
// -----------------------------------------------------------------------------
&[data-classification='slider'] {
input {
// Style range inputs
}
}
// Textarea inputs
// -----------------------------------------------------------------------------
&[data-classification='textarea'] {
textarea {
// Style textareas
}
}
// Button inputs
// -----------------------------------------------------------------------------
&[data-classification='button'] {
button {
// Style button inputs
}
}
// Select lists
// -----------------------------------------------------------------------------
&[data-classification='select'] {
select {
// Style select lists
}
}
// Box inputs
// -----------------------------------------------------------------------------
&[data-classification='box'] {
.formulate-input-element {
// Box input (checkbox and radio) wrapper (might want flex here)
input {
// Style box element itself
}
}
}
// File inputs
// -----------------------------------------------------------------------------
&[data-classification="file"] {
.formulate-input-upload-area {
input {
// The actual upload element
}
}
}
// Image uploads
// -----------------------------------------------------------------------------
[data-type="image"] {
// image uploads
}
}
// Form-level errors
// -----------------------------------------------------------------------------
.formulate-form-errors {
.formulate-form-error {
// form errors (not specific to a field)
}
}

View File

@ -1,781 +0,0 @@
// Formulate inputs
// -----------------------------------------------------------------------------
.formulate-input {
margin-bottom: 1.5em;
font-family: $formulate-font-stack;
.formulate-input-label {
display: block;
line-height: 1.5;
font-size: .9em;
font-weight: 600;
margin-bottom: .1em;
&--before + .formulate-input-help--before {
margin-top: -.25em;
margin-bottom: .75em;
}
}
.formulate-input-element {
max-width: 20em;
margin-bottom: .1em;
}
.formulate-input-help {
color: $formulate-gray-ddd;
font-size: .7em;
font-weight: 400;
line-height: 1.5;
margin-bottom: .25em;
}
.formulate-input-errors {
list-style-type: none;
padding: 0;
margin: 0;
}
.formulate-input-error,
.formulate-file-upload-error {
color: $formulate-error;
font-size: .8em;
font-weight: 300;
line-height: 1.5;
margin-bottom: .25em;
}
// .formulate-input-group-item {
// margin-bottom: 1.5em;
// padding: 1.5em;
// border: 1px solid $formulate-gray;
// border-radius: .25em;
// &:last-child {
// margin-bottom: 1.5em;
// }
// }
&:last-child {
margin-bottom: 0;
}
// Text inputs
// -----------------------------------------------------------------------------
&[data-classification='text'] {
input {
@include baseinput;
}
.formulate-input-element--date,
.formulate-input-element--month,
.formulate-input-element--week,
.formulate-input-element--datetime-local {
input {
min-height: 2.2em; // shim for some browsers that collapse height like ios
}
}
.formulate-input-element--search {
position: relative;
&::before {
content: '';
width: 2em;
height: 100%;
position: absolute;
left: 0;
top: 0;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 72.99 72.9"><path fill="%23#{str-slice("#{$formulate-gray-ddd}", 2)}" d="M71.77,66,53.87,48.1A29.94,29.94,0,1,0,30,60a29.52,29.52,0,0,0,18.1-6.1l18,17.8A4,4,0,0,0,69,72.9a4.18,4.18,0,0,0,2.9-1.2A4.09,4.09,0,0,0,71.77,66ZM30.07,51.9a21.9,21.9,0,1,1,15.5-37.4A21.37,21.37,0,0,1,52,30a22,22,0,0,1-6.4,15.5A21.54,21.54,0,0,1,30.07,51.9Z"/></svg>');
background-size: 1em 1em;
background-repeat: no-repeat;
background-position: center;
pointer-events: none;
}
input {
padding-left: 2em;
}
}
input[type="color"] {
height: 1.1em;
box-sizing: content-box;
width: auto;
@mixin color-swatch {
display: block;
height: 1em;
border-radius: .2em;
border: 0;
flex: auto;
}
&::-webkit-color-swatch-wrapper {
padding: 0 0 0 1.5em;
display: flex;
align-items: center;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 79.17 79.17"><path fill="%23#{str-slice("#{$formulate-gray-ddd}", 2)}" d="M40.8,22.92c-3.4-3.4-4.76-8.44-1-12.24s8.84-2.44,12.24,1c5-5,10.69-13.33,18.81-11.31a11,11,0,0,1,7.62,14.34c-1.26,3.45-4.63,6.06-7.16,8.59-.92.93-3,2.26-3.46,3.46-.42,1,1.82,2.63,2.36,4a8,8,0,0,1-12.42,9.19c-.21-.16-1.35-1.51-1.59-1.51s-.83.83-1,1L49.71,44.9,32.43,62.18c-3.37,3.38-6.6,7.14-10.26,10.21a11,11,0,0,1-4.48,2.28c-1.25.3-3.11-.22-4.18.18-1.28.48-2.42,2.65-3.68,3.4-6.05,3.61-12.64-4-8.46-9.57.73-1,2.53-1.92,3-3a14.46,14.46,0,0,0-.09-2.52,10.75,10.75,0,0,1,3.14-6.77c.92-1,1.93-1.93,2.89-2.9Zm4.4-1.5c4.19,4,8.24,8.24,12.36,12.36,2.06,2.06,5,5.59,8,2.61,4.65-4.62-5-6.8-2.42-10.78C66.3,20.7,76.4,16.48,74.84,9.45,73.62,4,67.12,2.78,63.29,6.32c-2.55,2.36-4.93,4.94-7.39,7.4-.79.78-1.8,2.28-2.88,2.73-2.14.88-3.4-1.62-4.79-2.77-2.58-2.14-6.89-.82-6.53,3C41.89,18.68,43.87,20.09,45.2,21.42Zm-1.45,4.44L27.82,41.79C22,47.57,15.89,53.14,10.41,59.2a8.23,8.23,0,0,0-1.44,2c-.93,2,.25,4.14-.5,6S4.92,69.94,4.3,72a2.34,2.34,0,0,0,2.56,3c1.11-.17,2-1.33,2.71-2.07a11.17,11.17,0,0,1,2.08-2c1.68-.94,4,.17,5.93-.57C20,69.41,22,66.73,23.76,65L34.42,54.3,53.3,35.42Z"/></svg>');
background-repeat: no-repeat;
background-size: .9em .9em;
background-position: left .1em;
}
&::-webkit-color-swatch {
@include color-swatch;
}
&::-moz-color-swatch {
@include color-swatch;
}
}
}
// Slider inputs
// -----------------------------------------------------------------------------
&[data-classification='slider'] {
.formulate-input-element--range {
display: flex;
align-items: center;
}
.formulate-input-element-range-value {
font-size: .9em;
line-height: 1;
margin-left: .5em;
background-color: $formulate-gray;
padding: .25em .3em;
border-radius: .25em;
color: $formulate-gray-ddd;
font-variant-numeric: tabular-nums;
}
input {
appearance: none;
width: 100%;
font-size: 1em;
padding: .5em 0;
&:focus {
outline: 0;
}
@mixin thumb {
cursor: pointer;
appearance: none;
width: 1em;
height: 1em;
border-radius: 1em;
border: 0;
background-color: $formulate-green;
margin-top: calc(-.5em + 2px);
}
@mixin track {
appearance: none;
width: 100%;
height: 4px;
background-color: $formulate-gray;
border-radius: 3px;
margin: 0;
padding: 0;
}
&::-webkit-slider-thumb {
@include thumb;
}
&::-moz-range-thumb {
@include thumb;
}
&::-ms-thumb {
@include thumb;
}
&::-webkit-slider-runnable-track {
@include track;
}
&::-moz-range-track {
@include track;
}
}
}
// Textarea inputs
// -----------------------------------------------------------------------------
&[data-classification='textarea'] {
textarea {
@include baseinput;
}
}
// Button inputs
// -----------------------------------------------------------------------------
&[data-classification='button'] {
button {
@include baseinput;
border-color: $formulate-green;
background-color: $formulate-green;
color: white;
min-width: 0;
width: auto;
font-weight: bold;
cursor: pointer;
display: inline-flex;
align-items: center;
&[disabled] {
background-color: $formulate-gray-d;
border-color: $formulate-gray-d;
}
&[data-ghost] {
color: $formulate-green;
background-color: transparent;
border-color: currentColor;
}
&[data-minor] {
font-size: .75em;
display: inline-block;
}
&[data-danger] {
background-color: $formulate-error;
border-color: $formulate-error;
}
&[data-danger][data-ghost] {
color: $formulate-error;
background-color: transparent;
}
&:active {
background-color: $formulate-green-l;
border-color: $formulate-green-l;
}
}
}
// Select lists
// -----------------------------------------------------------------------------
&[data-classification='select'] {
.formulate-input-element {
position: relative;
&::before {
@include down-arrow;
top: 50%;
margin-top: -.1em;
right: 1em;
position: absolute;
}
}
select {
@include baseinput;
padding-right: 2em;
&[data-placeholder-selected] {
color: $formulate-gray-dd;
}
}
}
// Box inputs
// -----------------------------------------------------------------------------
&[data-classification='box'] {
.formulate-input-wrapper {
display: flex;
align-items: center;
}
.formulate-input-element {
overflow: hidden;
display: flex;
align-items: center;
input {
position: absolute;
left: -999px;
}
&-decorator {
display: block;
width: 1em;
height: 1em;
border-radius: .25em;
border: 1px solid $formulate-gray-d;
position: relative;
&::before {
content: '';
display: block;
background-size: contain;
background-position: right;
width: calc(100% - .125em);
height: calc(100% - .125em);
box-sizing: border-box;
position: absolute;
top: .0625em;
left: .0625em;
}
}
&[data-type="radio"] {
.formulate-input-element-decorator {
border-radius: 1em;
&::before {
border-radius: 1em;
width: calc(100% - .5em);
height: calc(100% - .5em);
top: .25em;
left: .25em;
}
}
}
input[type="checkbox"]:checked {
& ~ .formulate-input-element-decorator {
border-color: $formulate-green;
&::before {
background-color: $formulate-green;
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M8.76,56.2c-6.38-6.34,3.26-16,9.64-9.69L38,65.88,80.56,23.29c6.38-6.38,16.07,3.32,9.69,9.69L42.84,80.37a6.83,6.83,0,0,1-9.65,0Z"/></svg>');
}
}
}
input[type="radio"]:checked {
& ~ .formulate-input-element-decorator {
border-color: $formulate-green;
&::before {
background-color: $formulate-green;
}
}
}
input:focus {
& ~ .formulate-input-element-decorator {
border-color: $formulate-green;
}
}
}
.formulate-input-label--after {
margin-left: .5em;
}
.formulate-input-label--before {
margin-right: .5em;
}
}
// Input groups
// -----------------------------------------------------------------------------
&[data-classification='group'] {
.formulate-input-group-item {
margin-bottom: .5em;
}
& > .formulate-input-wrapper > .formulate-input-label {
margin-bottom: .5em;
}
[data-is-repeatable] {
padding: 1em;
border: 1px solid $formulate-gray;
border-radius: .3em;
.formulate-input-grouping {
margin: -1em -1em 0 -1em;
}
.formulate-input-group-repeatable {
padding: 1em 3em 1em 1em;
border-bottom: 1px solid $formulate-gray;
position: relative;
&-remove {
position: absolute;
display: block;
top: calc(50% - .65em + .5em);
width: 1.3em;
height: 1.3em;
background-color: $formulate-gray-d;
right: .85em;
border-radius: 1.3em;
cursor: pointer;
transition: background-color .2s;
overflow: hidden;
text-indent: -1000px;
&::before,
&::after {
content: '';
position: absolute;
top: calc(50% - .1em);
left: .325em;
display: block;
width: .65em;
height: .2em;
background-color: white;
transform-origin: center center;
transition: transform .25s;
}
@media (pointer: fine) {
&:hover {
background-color: $formulate-error-l;
&::after,
&::before {
height: .2em;
width: .75em;
left: .25em;
top: calc(50% - .075em);
}
&::after {
transform: rotate(45deg);
}
&::before {
transform: rotate(-45deg);
}
}
}
}
&:last-child {
margin-bottom: 1em;
}
}
}
}
// File inputs
// -----------------------------------------------------------------------------
&[data-classification="file"] {
.formulate-input-upload-area {
width: 100%;
position: relative;
padding: 2em 0;
input {
cursor: pointer;
appearance: none;
opacity: 0;
position: absolute;
left: 0;
right: 0;
bottom: 0;
top: 0;
width: 100%;
height: 100%;
z-index: 5;
}
&[data-has-files] {
padding: 0;
input {
display: none;
}
}
&-mask {
border-radius: .4em;
position: absolute;
pointer-events: none;
position: absolute;
display: flex;
justify-content: center;
align-items: center;
left: 0;
right: 0;
top: 0;
bottom: 0;
border: 2px dashed $formulate-gray-dd;
z-index: 2;
&::before {
content: '';
background-color: $formulate-gray-dd;
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 58 58"><path d="M29,58A29,29,0,1,0,0,29,29,29,0,0,0,29,58ZM29,4A25,25,0,1,1,4,29,25,25,0,0,1,29,4Z"/><polygon points="27 22 27 44.4 31 44.4 31 22 41.7 31.1 44.3 28.1 29 15 13.7 28.1 16.3 31.1 27 22"/></svg>');
mask-repeat: no-repeat;
mask-position: center;
width: 2em;
height: 2em;
position: absolute;
pointer-events: none;
}
}
input:focus,
input:hover,
input[data-is-drag-hover] {
& ~ .formulate-input-upload-area-mask {
border-color: $formulate-green;
&::before {
background-color: $formulate-green;
}
}
}
}
.formulate-files {
list-style-type: none;
margin: 0;
padding: 0;
.formulate-file-progress {
background-color: $formulate-gray-d;
height: .3em;
border-radius: 1.25em;
width: 5em;
overflow: hidden;
position: relative;
flex: 0 0 5em;
right: .75em;
transition: height .25s, width .25s, flex-basis .25s;
z-index: 2;
&::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
display: block;
opacity: 0;
transform: scale(.08);
background-color: $formulate-white;
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M8.76,56.2c-6.38-6.34,3.26-16,9.64-9.69L38,65.88,80.56,23.29c6.38-6.38,16.07,3.32,9.69,9.69L42.84,80.37a6.83,6.83,0,0,1-9.65,0Z"/></svg>');
mask-size: 77%;
mask-repeat: no-repeat;
mask-position: center;
z-index: 3;
}
&[data-just-finished] {
width: 1.25em;
height: 1.25em;
flex: 0 0 1.25em;
&::before {
transition: transform .25s .2s, opacity .25s .2s;
transform: scale(1);
opacity: 1;
}
}
&[data-is-finished] {
transition: height .25s, width .25s, left .25s, top, .25s, border-radius .25s;
width: .3em;
flex: 0 0 .3em;
height: 100%;
right: 0;
border-radius: 0 .23em .23em 0;
&::before {
transition: opacity .1s;
opacity: 0;
}
}
.formulate-file-progress-inner {
background-color: $formulate-green;
width: 1%;
position: absolute;
left: 0;
bottom: 0;
top: 0;
z-index: 2;
}
}
.formulate-file-name {
padding-left: 1.5em;
padding-right: 2em;
max-width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
&::before {
position: absolute;
left: .7em;
top: 50%;
margin-top: -.7em;
background-color: $formulate-gray-dd;
content: '';
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64.06 83.59"><path d="M55.94,83.59a8.16,8.16,0,0,0,8.12-8.16V19.12a1.77,1.77,0,0,0-.52-1.25L46.21.59A1.69,1.69,0,0,0,45.14.08L44.69,0l-.18,0H8.13A8.18,8.18,0,0,0,0,8.16V75.41a8.16,8.16,0,0,0,8.13,8.16H55.94ZM46.68,6,58.11,17.38H46.68ZM3.52,75.43V8.16A4.64,4.64,0,0,1,8.13,3.52h35V19.16a1.75,1.75,0,0,0,1.76,1.74H60.55V75.43a4.65,4.65,0,0,1-4.61,4.65H8.13A4.65,4.65,0,0,1,3.52,75.43Z"/></svg>');
mask-repeat: no-repeat;
mask-size: contain;
width: 1.25em;
height: 1.25em;
display: inline-block;
margin-right: .5em;
}
}
.formulate-file-remove {
width: 1.25em;
height: 1.25em;
border-radius: 1em;
border: 1px solid $formulate-gray-dd;
background-color: $formulate-gray-dd;
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 59.1 59.2"><path d="M1.6,57.7a5,5,0,0,0,3.5,1.5,4.85,4.85,0,0,0,3.5-1.5l21-21,21,21a5,5,0,0,0,3.5,1.5,4.85,4.85,0,0,0,3.5-1.5,5,5,0,0,0,0-7.1l-21-21,21-21a5,5,0,0,0,0-7.1,5,5,0,0,0-7.1,0l-21,21L8.6,1.7a5,5,0,0,0-7.1,0,5,5,0,0,0,0,7.1l21,21L1.6,50.7A4.83,4.83,0,0,0,1.6,57.7Z"/></svg>');
mask-size: .6em;
mask-repeat: no-repeat;
mask-position: center;
cursor: pointer;
position: absolute;
right: .75em;
z-index: 1;
transition: transform .25s;
@media (pointer: fine) {
&:hover {
transform: scale(1.5);
}
}
}
li {
display: block;
&[data-has-error] {
.formulate-file-progress {
background-color: $formulate-error-l;
}
}
&[data-has-preview] {
.formulate-file-name {
&:before {
display: none;
}
}
}
& + li {
margin-top: .5em;
}
}
.formulate-file {
@include baseinput;
display: block;
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
position: relative;
@mixin progress {
appearance: none;
height: .5em;
border-radius: .5em;
overflow: hidden;
}
::-webkit-progress-bar {
@include progress;
}
}
.formulate-file-image-preview {
width: 3em;
height: 3em;
flex: 0 0 3em;
position: relative;
z-index: 2;
left: -1px;
box-shadow: 0 0 0 1px $formulate-gray;
transition: transform .25s, box-shadow .25s, background-color .25s;
@media (pointer: fine) {
&:hover {
transition-delay: .2s;
transform: scale(3);
background-color: $formulate-white;
box-shadow: 0 0 2px 0 rgba(0, 0, 0, .1);
}
}
img {
display: block;
position: absolute;
width: 100%;
height: 100%;
left: 0;
right: 0;
bottom: 0;
top: 0;
object-fit: contain;
transition: all .25s;
}
}
}
// Image uploads
// -----------------------------------------------------------------------------
[data-type="image"] {
.formulate-input-upload-area {
.formulate-input-upload-area-mask {
&::before {
mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 71.05"><path d="M82.89,0H7.1A7.12,7.12,0,0,0,0,7.11V64a7.11,7.11,0,0,0,7.1,7.1H82.9A7.11,7.11,0,0,0,90,64V7.11A7.12,7.12,0,0,0,82.89,0ZM69.28,39.35a5.44,5.44,0,0,0-8,0L50.58,50.74,32.38,30.88a5.31,5.31,0,0,0-7.92,0L4.74,52.4V7.11A2.37,2.37,0,0,1,7.11,4.74H82.9a2.37,2.37,0,0,1,2.36,2.37V56.3Z"/><circle cx="67.74" cy="22.26" r="8.53"/></svg>');
}
}
}
}
}
}
.formulate-form-errors {
margin: .75em 0;
padding: 0;
list-style-type: none;
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
.formulate-form-error {
color: $formulate-error;
font-size: .9em;
font-weight: 300;
line-height: 1.5;
margin-bottom: .25em;
}
}

View File

@ -1,65 +0,0 @@
// Snow theme colors
// -----------------------------------------------------------------------------
$formulate-font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
$formulate-gray: #efefef;
$formulate-gray-d: #cecece;
$formulate-gray-dd: #a8a8a8;
$formulate-gray-ddd: #6d6d6d;
$formulate-gray-dddd: #2e2e2e;
$formulate-dark: #000000;
$formulate-blue-l: #f3f4f4;
$formulate-green: #41b883;
$formulate-green-l: #64c89b;
$formulate-error: #960505;
$formulate-error-l: #dc2c2c;
$formulate-yellow-d: #6b5900;
$formulate-yellow: #e6c000;
$formulate-yellow-l: #fff8d2;
$formulate-white: #ffffff;
// Mixins
// -----------------------------------------------------------------------------
@mixin baseinput {
appearance: none;
border-radius: .3em;
border: 1px solid $formulate-gray-d;
box-sizing: border-box;
background-color: transparent;
font-size: .9em;
font-family: $formulate-font-stack;
padding: .75em;
display: block;
width: 100%;
font-weight: 400;
line-height: 1.2em;
margin: 0;
&::placeholder {
color: $formulate-gray-dd;
line-height: normal;
}
&:focus {
outline: 0;
border: 1px solid $formulate-green;
}
}
@mixin down-arrow {
content: '';
width: 0;
height: 0;
border: .3em solid transparent;
border-top-color: $formulate-gray-d;
border-bottom-width: 0;
}

View File

@ -1,2 +0,0 @@
@import 'variables';
@import 'inputs';