Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

132 boring much select styles 2 #190

Merged
merged 4 commits into from
Jun 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 25 additions & 26 deletions public/demo-styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,28 +6,6 @@ Boring colors https://flatuicolors.com/palette/gb
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&display=swap');

body {
/* Fun colors */
--highligher-pink: #ef5777;
--dark-periwinkle: #575fcf;
--megaman: #4bcffa;
--fresh-turquoise: #34e7e4;
--minty-green: #0be881;
--sizeling-red: #f53b57;
--free-speech-blue: #3c40c6;
--spirio-disco-ball: #0fbcf9;
--jade-dust: #00d8d6;
--green-teal: #05c46b;
--narenjin-orange: #ffc048;
--yriel-yellow: #ffdd59;
--sunset-orange: #ff5e57;
--hint-of-elusive-blue: #d2dae2;
--good-night: #485460;
--chrome-yellow: #ffa801;
--vibrant-yellow: #ffd32a;
--red-orange: #ff3f34;
--london-square: #808e9b;
--black-pearl: #1e272e;

/* Boring colors */
--protoss-pylon: #00a8ff;
--periwinkle: #9c88ff;
Expand All @@ -50,6 +28,28 @@ body {
--pico-void: #192a56;
--electromagnetic: #2f3640;

/* Fun colors */
--highligher-pink: #ef5777;
--dark-periwinkle: #575fcf;
--megaman: #4bcffa;
--fresh-turquoise: #34e7e4;
--minty-green: #0be881;
--sizeling-red: #f53b57;
--free-speech-blue: #3c40c6;
--spirio-disco-ball: #0fbcf9;
--jade-dust: #00d8d6;
--green-teal: #05c46b;
--narenjin-orange: #ffc048;
--yriel-yellow: #ffdd59;
--sunset-orange: #ff5e57;
--hint-of-elusive-blue: #d2dae2;
--good-night: #485460;
--chrome-yellow: #ffa801;
--vibrant-yellow: #ffd32a;
--red-orange: #ff3f34;
--london-square: #808e9b;
--black-pearl: #1e272e;

--much-select-height: 36px;
}

Expand Down Expand Up @@ -429,20 +429,19 @@ much-select::part(value highlighted-value) {

much-select::part(dropdown-indicator) {
position: absolute;
right: 5px;
right: 8px;
top: 15px;
cursor: pointer;
display: block;
transition: transform 0.25s;
font-family: "Times New Roman", serif;
}

much-select::part(dropdown-indicator up) {
transform: rotate(180deg);
transform: rotate(270deg);
}

much-select::part(dropdown-indicator down) {
transform: rotate(0deg);
transform: rotate(90deg);
}

much-select::part(clear-button-wrapper) {
Expand Down
Loading