Merge commit '2d128754760fba06f0cfd42b8bd6ded52a4ed864' into colorGradientPicker

This commit is contained in:
MrOnosa
2020-10-30 18:10:04 -05:00
15 changed files with 267 additions and 77 deletions

View File

@@ -13,6 +13,7 @@
@import 'modules/marketplace';
@import 'modules/checkbox';
@import 'modules/buttons';
@import 'modules/dropdown';
@import 'modules/welcome';
body {
@@ -29,16 +30,6 @@ body {
outline: none;
}
@font-face {
font-family: 'Lexend Deca';
src: url('/./fonts/LexendDeca-Regular.woff2') format('woff2');
}
@font-face {
font-family: 'Roboto';
src: url('/./fonts/Roboto-Cyrillic.woff2') format('woff2');
}
#center {
margin-left: 2vw;
margin-right: 2vw;

View File

@@ -0,0 +1,16 @@
.dropdown {
select {
background: linear-gradient(180deg, #ffb032 0%, #dd3b67 100%);
height: 34px;
width: 120px;
color: map-get($modal, "text");
border-image-source: linear-gradient(180deg, #ffb032 0%, #dd3b67 100%);
border-image-slice: 1;
border-width: 3px 4px;
}
select#language {
float: right;
}
}

View File

@@ -225,20 +225,6 @@ button.remove + input[type=color].colour {
margin-left: 7px;
}
select {
background: none;
height: 34px;
width: 120px;
border-image-slice: 1;
border-image-source: linear-gradient(180deg, #ffb032 0%, #dd3b67 100%);
border-left: 10px solid;
color: map-get($modal, "text");
}
select#language {
float: right;
}
#customBackgroundColour {
cursor: pointer;
}