@heycar-uikit/core
Version:
The React UI library from HeyCar
120 lines (107 loc) • 2.15 kB
CSS
:root {
/* heycar mint color */
/* mica blue color */
/* sunbeam blue color */
/* mustang yellow color */
/* old ferrari red color */
/* -- fantasy name of "green" color to be defined -- */
/* -- fantasy name of "whatsapp" color to be defined -- */
/* -- fantasy name of "red" color to be defined -- */
/* tarmac grey color */
--color-tarmac-grey-100: #e6e6e6;
--color-tarmac-grey-600: #595959;
--color-tarmac-grey-700: #303030;
/* brand colors */
}
/* Depricated. Do Not Use */
:root {
--spacing-1: 4px;
--spacing-2: 8px;
--spacing-4: 16px;
}
:root {
/* Font families */
/* Font weights */
}
/*
Heading
*/
/*
Sub-Heading
*/
/*
Body
*/
/*
Caption
*/
/*
Overline
*/
/*
Button
*/
/*
Button Old - DO NOT USE
*/
/* If this is ever changed please update breakpoints.json as well */
/* Mobile */
/* Tablet */
/* Desktop */
/* Default theme (light) */
:root {
/*
Colors
*/
--color-neutral-100: var(--color-tarmac-grey-100);
--color-neutral-600: var(--color-tarmac-grey-600);
--color-neutral-700: var(--color-tarmac-grey-700);
/*
Sizes
*/
}
body {
color: var(--color-neutral-700);
}
/*
* Base
*/
.header__languageList_1jqt2 {
position: absolute;
right: 0;
top: 48px;
z-index: 100;
padding: var(--spacing-4);
min-width: 232px;
border: solid 1px var(--color-neutral-100);
background: #fff;
/* heading */
}
.header__languageList_1jqt2 > span {
display: block;
padding: var(--spacing-2) 0;
}
.header__languageList_1jqt2 > ul {
list-style: none;
margin: 0;
padding: var(--spacing-2) 0;
border-top: solid 1px var(--color-neutral-100);
}
.header__languageList_1jqt2 li {
padding: var(--spacing-1);
margin-bottom: var(--spacing-2);
}
.header__languageList_1jqt2 li:last-child {
margin-bottom: 0;
}
.header__languageList_1jqt2 li a {
display: flex;
gap: var(--spacing-4);
align-items: center;
color: var(--color-neutral-700);
text-decoration: none;
transition: color 0.3s ease;
}
.header__languageList_1jqt2 li a:hover {
color: var(--color-neutral-600);
}