mirror of
https://github.com/jenil/chota.git
synced 2023-08-10 21:13:07 +03:00
parent
5a9c44e9a9
commit
86e6d50a3d
15
dist/chota.css
vendored
15
dist/chota.css
vendored
@ -24,10 +24,8 @@ html {
|
||||
-webkit-text-size-adjust: 100%;
|
||||
}
|
||||
body {
|
||||
letter-spacing: 0.01em;
|
||||
line-height: 1.6;
|
||||
font-size: var(--font-size);
|
||||
font-weight: 400;
|
||||
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
|
||||
font-family: var(--font-family);
|
||||
margin: 0;
|
||||
@ -67,6 +65,9 @@ a {
|
||||
a:hover:not(.button) {
|
||||
opacity: 0.75;
|
||||
}
|
||||
button {
|
||||
font-family: inherit;
|
||||
}
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
@ -718,6 +719,7 @@ button:disabled:hover {
|
||||
.card {
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 4px;
|
||||
background: white;
|
||||
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
@ -778,6 +780,15 @@ button:disabled:hover {
|
||||
.tag+.tag {
|
||||
margin-left: 1rem;
|
||||
}
|
||||
details.dropdown {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
details.dropdown > :last-child {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
/* Colors */
|
||||
.bg-primary {
|
||||
background-color: var(--color-primary) !important;
|
||||
|
2
dist/chota.min.css
vendored
2
dist/chota.min.css
vendored
File diff suppressed because one or more lines are too long
@ -25,10 +25,8 @@ html {
|
||||
}
|
||||
|
||||
body {
|
||||
letter-spacing: 0.01em;
|
||||
line-height: 1.6;
|
||||
font-size: var(--font-size);
|
||||
font-weight: 400;
|
||||
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
|
||||
font-family: var(--font-family);
|
||||
margin: 0;
|
||||
@ -78,6 +76,10 @@ a:hover:not(.button) {
|
||||
opacity: 0.75;
|
||||
}
|
||||
|
||||
button {
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
.card {
|
||||
padding: 1rem 2rem;
|
||||
border-radius: 4px;
|
||||
background: white;
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
|
||||
}
|
||||
|
||||
|
10
src/_dropdown.css
Normal file
10
src/_dropdown.css
Normal file
@ -0,0 +1,10 @@
|
||||
details.dropdown {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
details.dropdown > :last-child {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
white-space: nowrap;
|
||||
}
|
@ -7,5 +7,6 @@
|
||||
@import "_card.css";
|
||||
@import "_tab.css";
|
||||
@import "_tag.css";
|
||||
@import "_dropdown.css";
|
||||
|
||||
@import "_util.css";
|
||||
|
Loading…
Reference in New Issue
Block a user