1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00
- new grid 📐
- header sizes
This commit is contained in:
Jenil Gogari 2017-04-01 22:02:55 -04:00
parent 7ad75c917a
commit bf44a8b34a
6 changed files with 399 additions and 403 deletions

702
dist/chota.css vendored
View File

@ -1,558 +1,532 @@
:root {
--primary-color: #1a9f60;
--lightGrey-color: #ddd;
--grid-maxWidth: 120rem;
--grid-gutter: 1.5rem;
--font-family: -apple-system, BlinkMacSystemFont, Avenir, "Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
:root{
--primary-color:#1a9f60;
--lightGrey-color:#ddd;
--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;
}
* {
box-sizing: border-box;
*{
box-sizing:border-box;
}
html {
box-sizing: border-box;
font-size: 62.5%;
line-height: 1.15;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
html{
font-size:62.5%;
line-height:1.15;
-ms-text-size-adjust:100%;
-webkit-text-size-adjust:100%;
}
body {
letter-spacing: 0.01em;
line-height: 1.6;
font-size: 1.6rem;
font-weight: 400;
font-family: var(--font-family);
margin: 0;
padding: 0;
body{
letter-spacing:.01em;
line-height:1.6;
font-size:1.6rem;
font-weight:400;
font-family:var(--font-family);
margin:0;
padding:0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-weight: 600;
h1,h2,h3,h4,h5,h6{
font-weight:500;
margin:.35em 0 .7em;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
h1{
font-size:2em;
}
a {
color: var(--primary-color);
h2{
font-size:1.75em;
}
a:hover:not(.button) {
opacity: 0.6;
h3{
font-size:1.5em;
}
p {
margin-top: 0;
h4{
font-size:1.25em;
}
blockquote {
background-color: #f3f3f3;
padding: 1.5rem 2rem;
border-left: 3px solid var(--lightGrey-color);
h5{
font-size:1em;
}
dl dt {
font-weight: bold;
h6{
font-size:.85em;
}
hr {
border: none;
background-color: var(--lightGrey-color);
height: 1px;
margin: 1rem 0;
a{
color:var(--primary-color);
}
table {
width: 100%;
border: none;
border-collapse: collapse;
border-spacing: 0;
text-align: left;
a:hover:not(.button){
opacity:.6;
}
td,
th {
vertical-align: middle;
padding: 1.2rem 0.4rem;
p{
margin-top:0;
}
thead {
border-bottom: 2px solid var(--lightGrey-color);
blockquote{
background-color:#f3f3f3;
padding:1.5rem 2rem;
border-left:3px solid var(--lightGrey-color);
}
tfoot {
border-top: 2px solid var(--lightGrey-color);
dl dt{
font-weight:700;
}
code,
kbd,
pre,
samp,
tt {
font-family: monaco, "Consolas", "Lucida Console", monospace;
hr{
background-color:var(--lightGrey-color);
height:1px;
margin:1rem 0;
}
code,
kbd {
padding: 0 0.4rem;
font-size: 90%;
white-space: pre-wrap;
border-radius: 4px;
color: #c62424;
padding: 0.2em 0.4em;
background-color: #f7f7f7;
hr,table{
border:none;
}
pre {
background-color: #f7f7f7;
font-size: 1em;
padding: 1rem;
table{
width:100%;
border-collapse:collapse;
border-spacing:0;
text-align:left;
}
pre code {
background: none;
td,th{
vertical-align:middle;
padding:1.2rem .4rem;
}
abbr[title] {
border-bottom: none;
text-decoration: underline;
text-decoration: underline dotted;
thead{
border-bottom:2px solid var(--lightGrey-color);
}
img {
max-width: 100%;
tfoot{
border-top:2px solid var(--lightGrey-color);
}
fieldset,
iframe {
border: 1px solid var(--lightGrey-color);
code,kbd,pre,samp,tt{
font-family:monaco,Consolas,Lucida Console,monospace;
}
.container {
max-width: var(--grid-maxWidth);
margin: 0 auto;
width: 90%;
code,kbd{
padding:0 .4rem;
font-size:90%;
white-space:pre-wrap;
border-radius:4px;
color:#c62424;
padding:.2em .4em;
}
.row {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
margin-top: var(--grid-gutter);
margin-bottom: var(--grid-gutter);
code,kbd,pre{
background-color:#f7f7f7;
}
.row > :first-child {
margin-left: 0;
pre{
font-size:1em;
padding:1rem;
}
.col {
flex: 1;
pre code{
background:none;
}
.col,
[class*=" col-"],
[class^='col-'] {
margin-left: var(--grid-gutter);
abbr[title]{
border-bottom:none;
text-decoration:underline;
text-decoration:underline dotted;
}
.col-1 {
width: calc((100% - var(--grid-gutter)*((12/1) - 1))/(12/1));
img{
max-width:100%;
}
.col-2 {
width: calc((100% - var(--grid-gutter)*((12/2) - 1))/(12/2));
fieldset,iframe{
border:1px solid var(--lightGrey-color);
}
.col-3 {
width: calc((100% - var(--grid-gutter)*((12/3) - 1))/(12/3));
.container{
max-width:var(--grid-maxWidth);
margin:0 auto;
width:96%;
padding:0 calc(var(--grid-gutter) / 2);
}
.col-4 {
width: calc((100% - var(--grid-gutter)*((12/4) - 1))/(12/4));
.row{
display:flex;
flex-flow:row wrap;
justify-content:flex-start;
margin-left:calc(var(--grid-gutter) / -2);
margin-right:calc(var(--grid-gutter) / -2);
}
.col-5 {
width: calc((100% - var(--grid-gutter)*((12/5) - 1))/(12/5));
.col{
flex:1;
}
.col-6 {
width: calc((100% - var(--grid-gutter)*((12/6) - 1))/(12/6));
.col,[class*=" col-"],[class^=col-]{
margin-bottom:var(--grid-gutter);
margin-left:calc(var(--grid-gutter) / 2);
margin-right:calc(var(--grid-gutter) / 2);
}
.col-7 {
width: calc((100% - var(--grid-gutter)*((12/7) - 1))/(12/7));
.col-1{
width:calc((100% / (12/1)) - var(--grid-gutter));
}
.col-8 {
width: calc((100% - var(--grid-gutter)*((12/8) - 1))/(12/8));
.col-2{
width:calc((100% / (12/2)) - var(--grid-gutter));
}
.col-9 {
width: calc((100% - var(--grid-gutter)*((12/9) - 1))/(12/9));
.col-3{
width:calc((100% / (12/3)) - var(--grid-gutter));
}
.col-10 {
width: calc((100% - var(--grid-gutter)*((12/10) - 1))/(12/10));
.col-4{
width:calc((100% / (12/4)) - var(--grid-gutter));
}
.col-11 {
width: calc((100% - var(--grid-gutter)*((12/11) - 1))/(12/11));
.col-5{
width:calc((100% / (12/5)) - var(--grid-gutter));
}
.col-12 {
width: calc((100% - var(--grid-gutter)*((12/12) - 1))/(12/12));
.col-6{
width:calc((100% / (12/6)) - var(--grid-gutter));
}
@media screen and (max-width: 768px) {
.col,
[class*=" col-"],
[class^='col-'] {
margin: var(--grid-gutter) 0;
width: 100%;
.col-7{
width:calc((100% / (12/7)) - var(--grid-gutter));
}
.col-8{
width:calc((100% / (12/8)) - var(--grid-gutter));
}
.col-9{
width:calc((100% / (12/9)) - var(--grid-gutter));
}
.col-10{
width:calc((100% / (12/10)) - var(--grid-gutter));
}
.col-11{
width:calc((100% / (12/11)) - var(--grid-gutter));
}
.col-12{
width:calc((100% / (12/12)) - var(--grid-gutter));
}
@media screen and (max-width:768px){
.container{
width:100%;
}
.col,[class*=" col-"],[class^=col-]{
flex-basis:100%;
}
}
fieldset {
padding: 0.5rem 2rem;
fieldset{
padding:.5rem 2rem;
}
legend {
text-transform: uppercase;
font-size: 0.8em;
letter-spacing: 0.1rem;
legend{
text-transform:uppercase;
font-size:.8em;
letter-spacing:.1rem;
}
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%;
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:.7rem 1rem;
border-radius:4px;
border:1px solid var(--lightGrey-color);
font-size:1em;
transition:all .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,
select:hover,
textarea:hover,
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]):hover,select:hover,textarea:hover,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,
select:focus,
textarea:focus,
textarea[type=text]:focus {
outline: none;
border-color: var(--primary-color);
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);
}
select {
-webkit-appearance: none;
background-color: #fafafa;
border: 1px solid var(--lightGrey-color);
background-position: right center;
background-repeat: no-repeat;
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>");
select{
-webkit-appearance:none;
background-color:#fafafa;
border:1px solid var(--lightGrey-color);
background-position:100%;
background-repeat:no-repeat;
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"] {
-webkit-appearance: none;
width: 1.6rem;
height: 1.6rem;
margin: -0.2rem 0.2rem;
border: 1px solid #aaa;
[type=checkbox],[type=radio]{
-webkit-appearance:none;
width:1.6rem;
height:1.6rem;
margin:-.2rem .2rem;
border:1px solid #aaa;
}
[type="radio"] {
border-radius: 50%;
box-shadow: inset 0 0 0 3px white;
[type=radio]{
border-radius:50%;
box-shadow:inset 0 0 0 3px #fff;
}
[type="radio"]:checked {
background-color: var(--primary-color);
[type=radio]:checked{
background-color:var(--primary-color);
}
[type="checkbox"]:checked {
background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAaCAYAAACgoey0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAX9JREFUeNpi+P//PwMNsS4QbwBiLnQ5WlqqAsRP/0PARiBmoYfFkkB8+z8qWALEjLS0mB+IL/3HDibSymJQXB7/jx/UgNSCvU4lwAbEG4DYkwi1WUxUspQZiOcRaSkIWOAKMk0Sg3jaf+IBOIVjMyQWiH8DsR+RljaTYOkBWJ5GNwRk2R+ooh9A7ETA0jwSLL0ATfEYqRpkyVc0xR+A2AyHpdFA/I9IS0F5WhRbAWIEtQQbeAXE6lhC5jeRlj4GYgVsRaYK1HBCmmWgmuyxhAwu8BpaXjNgs/gYkYbcAGIXPCGDDkCOM8eVPkCEFhE+JhX8BGJnfAkTxgC57BOVLAXlihBC2RA9Vf+k0FJQKk8nJv+jCwQi5WNyQAWxpR02wRQS8icy6CKlmMUlUUGipfOQK3lKLAbhdhIKfWZS6258kiAfzCZg6V4gZiOn0UBIAcgn63BYehK50Ke2xQxQH+3FUoqJUtJMIlYhLxAfxVJu09xiWENuMxCrUaNhCBBgAOAVfjALa5TLAAAAAElFTkSuQmCC") var(--primary-color) no-repeat center;
background-size: 1rem;
[type=checkbox]:checked{
background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAaCAYAAACgoey0AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAX9JREFUeNpi+P//PwMNsS4QbwBiLnQ5WlqqAsRP/0PARiBmoYfFkkB8+z8qWALEjLS0mB+IL/3HDibSymJQXB7/jx/UgNSCvU4lwAbEG4DYkwi1WUxUspQZiOcRaSkIWOAKMk0Sg3jaf+IBOIVjMyQWiH8DsR+RljaTYOkBWJ5GNwRk2R+ooh9A7ETA0jwSLL0ATfEYqRpkyVc0xR+A2AyHpdFA/I9IS0F5WhRbAWIEtQQbeAXE6lhC5jeRlj4GYgVsRaYK1HBCmmWgmuyxhAwu8BpaXjNgs/gYkYbcAGIXPCGDDkCOM8eVPkCEFhE+JhX8BGJnfAkTxgC57BOVLAXlihBC2RA9Vf+k0FJQKk8nJv+jCwQi5WNyQAWxpR02wRQS8icy6CKlmMUlUUGipfOQK3lKLAbhdhIKfWZS6258kiAfzCZg6V4gZiOn0UBIAcgn63BYehK50Ke2xQxQH+3FUoqJUtJMIlYhLxAfxVJu09xiWENuMxCrUaNhCBBgAOAVfjALa5TLAAAAAElFTkSuQmCC") var(--primary-color) no-repeat 50%;
background-size:1rem;
}
/* BUTTONS */
.button,
[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;
transition: all 0.2s ease;
text-decoration: none;
transform: scale(1);
transition: all 300ms;
display: inline-block;
.button,[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;
transition:all .2s ease;
text-decoration:none;
transform:scale(1);
transition:all .3s;
display:inline-block;
}
.button + .button {
margin-left: 1rem;
.button+.button{
margin-left:1rem;
}
.button:hover,
[type=button]:hover,
[type=reset]:hover,
[type=submit]:hover,
button:hover {
opacity: 0.8;
.button:hover,[type=button]:hover,[type=reset]:hover,[type=submit]:hover,button:hover{
opacity:.8;
}
.button:active,
[type=button]:active,
[type=reset]:active,
[type=submit]:active,
button:active {
transform: scale(0.98);
.button:active,[type=button]:active,[type=reset]:active,[type=submit]:active,button:active{
transform:scale(.98);
}
input[disabled] {
opacity: 0.4;
cursor: not-allowed;
input[disabled]{
opacity:.4;
cursor:not-allowed;
}
.button.primary,
[type=submit] {
color: #fff;
background: var(--primary-color);
.button.primary,[type=submit]{
color:#fff;
background:var(--primary-color);
}
.button.outline {
background-color: transparent;
border: 1px solid var(--lightGrey-color);
.button.outline{
background-color:transparent;
border:1px solid var(--lightGrey-color);
}
.button.outline.primary {
border-color: var(--primary-color);
color: var(--primary-color);
.button.outline.primary{
border-color:var(--primary-color);
color:var(--primary-color);
}
.button.clear {
background-color: transparent;
border-color: transparent;
color: var(--primary-color);
.button.clear{
background-color:transparent;
border-color:transparent;
color:var(--primary-color);
}
.nav {
display: flex;
min-height: 5rem;
align-items: stretch;
.nav{
min-height:5rem;
align-items:stretch;
}
.nav > .container {
display: flex;
.nav,.nav>.container{
display:flex;
}
.container > .nav {
padding-left: var(--grid-gutter);
padding-right: var(--grid-gutter);
.nav-center,.nav-left,.nav-right{
display:flex;
flex-basis:0;
flex-grow:1;
flex-shrink:0;
}
.nav-center,
.nav-left,
.nav-right {
display: flex;
flex-basis: 0;
flex-grow: 1;
flex-shrink: 0;
.nav-left{
justify-content:flex-start;
}
.nav-left {
justify-content: flex-start;
.nav-right{
justify-content:flex-end;
}
.nav-right {
justify-content: flex-end;
.nav-center{
justify-content:center;
}
.nav-center {
justify-content: center;
}
@media screen and (max-width: 480px) {
.nav, .nav>.container {
flex-direction: column;
@media screen and (max-width:480px){
.nav,.nav>.container{
flex-direction:column;
}
.nav-center,
.nav-left,
.nav-right {
flex-basis: 100%;
justify-content: center;
flex-shrink: 1;
flex-grow: 0;
flex-wrap: wrap;
.nav-center,.nav-left,.nav-right{
flex-basis:100%;
justify-content:center;
flex-shrink:1;
flex-grow:0;
flex-wrap:wrap;
}
}
.nav .brand {
display: flex;
align-items: center;
margin: 0;
font-weight: 300;
.nav .brand{
margin:0;
}
.nav a {
text-decoration: none;
cursor: pointer;
display: flex;
align-items: center;
padding: 1rem 2rem;
.nav .brand,.nav a{
display:flex;
align-items:center;
}
.card {
padding: 1rem 2rem;
border-radius: 4px;
box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
.nav a{
text-decoration:none;
cursor:pointer;
}
.card header > * {
margin-top: 0;
margin-bottom: 1rem;
.card,.nav a{
padding:1rem 2rem;
}
.tabs {
display: flex;
.card{
border-radius:4px;
box-shadow:0 0 2px rgba(0,0,0,.4);
}
.tabs a {
text-decoration: none;
.card header>*{
margin-top:0;
margin-bottom:1rem;
}
.tabs > a {
padding: 1rem 2rem;
flex: 1;
color: #555;
border-bottom: 2px solid var(--lightGrey-color);
text-align: center;
.tabs{
display:flex;
}
.tabs > a.active,
.tabs > a:hover {
border-bottom: 2px solid #555;
.tabs a{
text-decoration:none;
}
.tabs > a.active {
border-color: var(--primary-color);
.tabs>a{
padding:1rem 2rem;
flex:1;
color:#555;
border-bottom:2px solid var(--lightGrey-color);
text-align:center;
}
.pull-right {
float: right;
.tabs>a.active,.tabs>a:hover{
border-bottom:2px solid #555;
}
.pull-left {
float: left;
.tabs>a.active{
border-color:var(--primary-color);
}
.is-text-center {
text-align: center;
.pull-right{
float:right;
}
.is-text-left {
text-align: left;
.pull-left{
float:left;
}
.is-text-right {
text-align: right;
.is-text-center{
text-align:center;
}
.is-text-uppercase {
text-transform: uppercase;
.is-text-left{
text-align:left;
}
.is-text-lowercase {
text-transform: lowercase;
.is-text-right{
text-align:right;
}
.is-text-capitalize {
text-transform: capitalize;
.is-text-uppercase{
text-transform:uppercase;
}
.is-full-screen {
width: 100%;
min-height: 100vh;
.is-text-lowercase{
text-transform:lowercase;
}
.is-full-width {
width: 100%;
.is-text-capitalize{
text-transform:capitalize;
}
.is-vertical-align {
display: flex;
align-items: center;
.is-full-screen{
width:100%;
min-height:100vh;
}
.is-horizontal-align {
display: flex;
justify-content: center;
.is-full-width{
width:100%;
}
.is-center {
display: flex;
align-items: center;
justify-content: center;
.is-vertical-align{
display:flex;
align-items:center;
}
.is-right {
display: flex;
align-items: center;
justify-content: flex-end;
.is-center,.is-horizontal-align{
display:flex;
justify-content:center;
}
.is-left {
display: flex;
align-items: center;
justify-content: flex-start;
.is-center{
align-items:center;
}
.is-fixed {
position: fixed;
width: 100%;
.is-right{
justify-content:flex-end;
}
.clearfix {
content: "";
display: table;
clear: both;
.is-left,.is-right{
display:flex;
align-items:center;
}
@media screen and (max-width: 480px) {
.hide-phone {
display: none;
.is-left{
justify-content:flex-start;
}
.is-fixed{
position:fixed;
width:100%;
}
.clearfix{
content:"";
display:table;
clear:both;
}
@media screen and (max-width:480px){
.hide-phone{
display:none;
}
}
@media screen and (max-width: 768px) {
.hide-tablet {
display: none;
@media screen and (max-width:768px){
.hide-tablet{
display:none;
}
}

2
dist/chota.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -5,8 +5,10 @@
"main": "dist/chota.min.css",
"scripts": {
"start": "browser-sync start --server --files '**/*.css' '**/*.html'",
"build": "rm -r dist/ && yarn postcss && yarn postcss -- -u cssnano -x .min.css",
"postcss": "postcss ./src/chota.css --use postcss-import -d dist/ --no-map",
"build": "rm -r dist/ && yarn postcss && yarn postcss -- -x .min.css && yarn cssnano && yarn cssnano:min",
"postcss": "postcss ./src/chota.css -u postcss-import -d dist/ --no-map",
"cssnano": "cssnano ./dist/chota.css ./dist/chota.css --no-calc --no-core",
"cssnano:min": "cssnano ./dist/chota.min.css ./dist/chota.min.css --no-calc",
"watch": "yarn postcss -- -u cssnano -x .min.css -w",
"test": "echo \"Error: no test specified\" && exit 1"
},
@ -28,8 +30,13 @@
"devDependencies": {
"autoprefixer": "^6.7.7",
"browser-sync": "^2.18.8",
"cssnano": "^3.10.0",
"cssnano-cli": "^1.0.5",
"postcss-cli": "^3.0.0",
"postcss-import": "^9.1.0"
}
},
"files": [
"src/",
"dist/",
"README.md"
]
}

View File

@ -2,7 +2,7 @@
--primary-color: #1a9f60;
--lightGrey-color: #ddd;
--grid-maxWidth: 120rem;
--grid-gutter: 1.5rem;
--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;
}
@ -11,7 +11,6 @@
}
html {
box-sizing: border-box;
font-size: 62.5%;
line-height: 1.15;
-ms-text-size-adjust: 100%;
@ -34,12 +33,32 @@ h3,
h4,
h5,
h6 {
font-weight: 600;
font-weight: 500;
margin: 0.35em 0 0.7em 0;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
h2 {
font-size: 1.75em;
}
h3 {
font-size: 1.5em;
}
h4 {
font-size: 1.25em;
}
h5 {
font-size: 1em;
}
h6 {
font-size: 0.85em;
}
a {
@ -51,7 +70,7 @@ a:hover:not(.button) {
}
p {
margin-top: 0;
margin-top: 0;
}
blockquote {
@ -119,7 +138,7 @@ pre {
}
pre code {
background: none;
background: none;
}
abbr[title] {

View File

@ -1,19 +1,16 @@
.container {
max-width: var(--grid-maxWidth);
margin: 0 auto;
width: 90%;
width: 96%;
padding: 0 calc(var(--grid-gutter) / 2);
}
.row {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
margin-top: var(--grid-gutter);
margin-bottom: var(--grid-gutter);
}
.row > :first-child {
margin-left: 0;
margin-left: calc(var(--grid-gutter) / -2);
margin-right: calc(var(--grid-gutter) / -2);
}
.col {
@ -23,62 +20,67 @@
.col,
[class*=" col-"],
[class^='col-'] {
margin-left: var(--grid-gutter);
margin-bottom: var(--grid-gutter);
margin-left: calc(var(--grid-gutter) / 2);
margin-right: calc(var(--grid-gutter) / 2);
}
.col-1 {
width: calc((100% - var(--grid-gutter)*((12/1) - 1))/(12/1));
width: calc((100% / (12/1)) - var(--grid-gutter));
}
.col-2 {
width: calc((100% - var(--grid-gutter)*((12/2) - 1))/(12/2));
width: calc((100% / (12/2)) - var(--grid-gutter));
}
.col-3 {
width: calc((100% - var(--grid-gutter)*((12/3) - 1))/(12/3));
width: calc((100% / (12/3)) - var(--grid-gutter));
}
.col-4 {
width: calc((100% - var(--grid-gutter)*((12/4) - 1))/(12/4));
width: calc((100% / (12/4)) - var(--grid-gutter));
}
.col-5 {
width: calc((100% - var(--grid-gutter)*((12/5) - 1))/(12/5));
width: calc((100% / (12/5)) - var(--grid-gutter));
}
.col-6 {
width: calc((100% - var(--grid-gutter)*((12/6) - 1))/(12/6));
width: calc((100% / (12/6)) - var(--grid-gutter));
}
.col-7 {
width: calc((100% - var(--grid-gutter)*((12/7) - 1))/(12/7));
width: calc((100% / (12/7)) - var(--grid-gutter));
}
.col-8 {
width: calc((100% - var(--grid-gutter)*((12/8) - 1))/(12/8));
width: calc((100% / (12/8)) - var(--grid-gutter));
}
.col-9 {
width: calc((100% - var(--grid-gutter)*((12/9) - 1))/(12/9));
width: calc((100% / (12/9)) - var(--grid-gutter));
}
.col-10 {
width: calc((100% - var(--grid-gutter)*((12/10) - 1))/(12/10));
width: calc((100% / (12/10)) - var(--grid-gutter));
}
.col-11 {
width: calc((100% - var(--grid-gutter)*((12/11) - 1))/(12/11));
width: calc((100% / (12/11)) - var(--grid-gutter));
}
.col-12 {
width: calc((100% - var(--grid-gutter)*((12/12) - 1))/(12/12));
width: calc((100% / (12/12)) - var(--grid-gutter));
}
@media screen and (max-width: 768px) {
.container {
width: 100%;
}
.col,
[class*=" col-"],
[class^='col-'] {
margin: var(--grid-gutter) 0;
width: 100%;
flex-basis: 100%;
}
}

View File

@ -8,11 +8,6 @@
display: flex;
}
.container > .nav {
padding-left: var(--grid-gutter);
padding-right: var(--grid-gutter);
}
.nav-center,
.nav-left,
.nav-right {
@ -53,7 +48,6 @@
display: flex;
align-items: center;
margin: 0;
font-weight: 300;
}
.nav a {