1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00

updates 🛠 🎨 🗺 🏷

* remove iframe border 🛠
* fix for nav with logo & text  🗺
* new color & button style 🎨
* new component: tags 🏷
This commit is contained in:
Jenil Gogari
2017-11-16 19:44:45 -05:00
parent d50e7a8c2a
commit c48bf16923
9 changed files with 460 additions and 352 deletions

View File

@@ -1,6 +1,7 @@
:root {
--primary-color: #1a9f60;
--lightGrey-color: #d2d6dd;
--darkGrey-color: #84868b;
--grid-maxWidth: 120rem;
--grid-gutter: 2rem;
--font-family: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
@@ -155,7 +156,10 @@ img {
max-width: 100%;
}
fieldset,
iframe {
border: 1px solid var(--lightGrey-color);
fieldset {
border: 1px solid var(--lightGrey-color);
}
iframe {
border: 0;
}

View File

@@ -1,123 +1,133 @@
fieldset {
padding: 0.5rem 2rem;
padding: 0.5rem 2rem;
}
legend {
text-transform: uppercase;
font-size: 0.8em;
letter-spacing: 0.1rem;
text-transform: uppercase;
font-size: 0.8em;
letter-spacing: 0.1rem;
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]),
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]),
select,
textarea,
textarea[type=text] {
font-family: inherit;
padding: 0.7rem 1rem;
border-radius: 4px;
border: 1px solid var(--lightGrey-color);
font-size: 1em;
transition: all 0.2s ease;
display: block;
width: 100%;
textarea[type="text"] {
font-family: inherit;
padding: 0.7rem 1rem;
border-radius: 4px;
border: 1px solid var(--lightGrey-color);
font-size: 1em;
transition: all 0.2s ease;
display: block;
width: 100%;
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):hover,
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):hover,
select:hover,
textarea:hover,
textarea[type=text]:hover {
border-color: #aaa;
textarea[type="text"]:hover {
border-color: #aaa;
}
input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=color]):not([type=button]):not([type=reset]):focus,
input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="color"]):not([type="button"]):not([type="reset"]):focus,
select:focus,
textarea:focus,
textarea[type=text]:focus {
outline: none;
border-color: var(--primary-color);
textarea[type="text"]:focus {
outline: none;
border-color: var(--primary-color);
}
select {
-webkit-appearance: none;
background: #fafafa no-repeat 100%;
background-size: 1ex;
background-origin: content-box;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='#555'><polygon points='0,0 60,0 30,40'/></svg>");
-webkit-appearance: none;
background: #fafafa no-repeat 100%;
background-size: 1ex;
background-origin: content-box;
background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='#555'><polygon points='0,0 60,0 30,40'/></svg>");
}
[type="checkbox"],
[type="radio"] {
width: 1.6rem;
height: 1.6rem;
width: 1.6rem;
height: 1.6rem;
}
/* BUTTONS */
.button,
[type=button],
[type=reset],
[type=submit],
[type="button"],
[type="reset"],
[type="submit"],
button {
padding: 1rem 2.5rem;
color: #333;
background: #e6e6e6;
border-radius: 4px;
border: none;
font-size: 1.5rem;
line-height: 1;
text-align: center;
transition: opacity 0.2s ease;
text-decoration: none;
transform: scale(1);
display: inline-block;
padding: 1rem 2.5rem;
color: #333;
background: #e6e6e6;
border-radius: 4px;
border: none;
font-size: 1.5rem;
line-height: 1;
text-align: center;
transition: opacity 0.2s ease;
text-decoration: none;
transform: scale(1);
display: inline-block;
}
.button + .button {
margin-left: 1rem;
margin-left: 1rem;
}
.button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover,
button:hover {
opacity: 0.8;
opacity: 0.8;
}
.button:active,
[type=button]:active,
[type=reset]:active,
[type=submit]:active,
[type="button"]:active,
[type="reset"]:active,
[type="submit"]:active,
button:active {
transform: scale(0.98);
transform: scale(0.98);
}
input[disabled],
button[disabled],
input[disabled]:hover,
button[disabled]:hover {
opacity: 0.4;
cursor: not-allowed;
opacity: 0.4;
cursor: not-allowed;
}
.button.primary,
[type=submit] {
color: #fff;
background-color: #000;
background: var(--primary-color);
.button.secondary,
[type="submit"] {
color: #fff;
background-color: #000;
background: var(--primary-color);
}
.button.secondary {
background: var(--darkGrey-color);
}
.button.outline {
background-color: transparent;
border: 1px solid var(--lightGrey-color);
background-color: transparent;
border: 1px solid var(--lightGrey-color);
}
.button.outline.primary {
border-color: var(--primary-color);
color: var(--primary-color);
border-color: var(--primary-color);
color: var(--primary-color);
}
.button.outline.secondary {
border-color: var(--darkGrey-color);
color: var(--darkGrey-color);
}
.button.clear {
background-color: transparent;
border-color: transparent;
color: var(--primary-color);
background-color: transparent;
border-color: transparent;
color: var(--primary-color);
}

View File

@@ -64,6 +64,10 @@
padding-bottom: 0;
}
.nav .brand img {
padding-right: 1rem;
}
.nav .button {
margin: auto 1rem;
}

23
src/_tag.css Normal file
View File

@@ -0,0 +1,23 @@
.tag {
display: inline-block;
border: 1px solid var(--lightGrey-color);
text-transform: uppercase;
color: var(--darkGrey-color);
padding: 0.5rem;
line-height: 1;
letter-spacing: 0.5px;
}
.tag.is-small {
padding: 0.4rem;
font-size: 0.75em;
}
.tag.is-large {
padding: 0.7rem;
font-size: 1.125em;
}
.tag+.tag {
margin-left: 1rem;
}

View File

@@ -6,5 +6,6 @@
@import "_nav.css";
@import "_card.css";
@import "_tab.css";
@import "_tag.css";
@import "_util.css";