update frameworks

pull/33/head
dohliam 4 years ago
parent 0af6d68fba
commit 4524ac919e

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -339,7 +339,6 @@ frameworks:
license_url: http://cjpatoilo.mit-license.org/
repo: https://github.com/milligram/milligram
url: https://github.com/milligram/milligram/blob/master/dist/milligram.css
skip: true
min:
author: owenversteeg
author_name: Owen Versteeg

@ -1,3 +1,20 @@
/*
- 3.815rem
- 3.052rem
- 2.441rem
- 1.953rem
- 1.563rem
- 1.25rem
- 1rem
- 0.8rem
- 0.64rem
- 0.512rem
- 0.41rem
- 0.328rem
- 0.262rem
- 0.209rem
*/
:root {
--primary: #1524d9;
--light-primary: #2332ea;
@ -370,4 +387,3 @@
cursor: help;
}
}

File diff suppressed because it is too large Load Diff

@ -928,13 +928,14 @@ kbd {
background-color: var(--highlighted-background-color);
border: var(--border-width) solid var(--border-hover-color);
border-radius: var(--border-radius);
box-shadow: inset 0 0.2rem 0 var(--background-color),
inset 0 0 0 0.2rem var(--background-color);
box-shadow: inset 0 0 0 0.2rem var(--background-color);
}
kbd kbd {
border: unset;
box-shadow: unset;
box-shadow: inset 0 -0.2rem 0 0 var(--background-color),
inset 0 0.2rem 0 0 var(--background-color);
border-radius: 0;
}
dialog {

@ -1,8 +1,8 @@
/*!
* Milligram v1.3.0
* https://milligram.github.io
* Milligram v1.4.0
* https://milligram.io
*
* Copyright (c) 2018 CJ Patoilo
* Copyright (c) 2020 CJ Patoilo
* Licensed under the MIT license
*/
@ -197,48 +197,46 @@ hr {
margin: 3.0rem 0;
}
input[type='color'],
input[type='date'],
input[type='datetime'],
input[type='datetime-local'],
input[type='email'],
input[type='month'],
input[type='number'],
input[type='password'],
input[type='search'],
input[type='tel'],
input[type='text'],
input[type='url'],
input[type='color'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='datetime'],
input[type='datetime-local'],
input:not([type]),
textarea,
select {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
border: 0.1rem solid #d1d1d1;
border-radius: .4rem;
box-shadow: none;
box-sizing: inherit;
height: 3.8rem;
padding: .6rem 1.0rem;
padding: .6rem 1.0rem .7rem;
width: 100%;
}
input[type='color']:focus,
input[type='date']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='email']:focus,
input[type='month']:focus,
input[type='number']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='tel']:focus,
input[type='text']:focus,
input[type='url']:focus,
input[type='color']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input:not([type]):focus,
textarea:focus,
select:focus {
@ -247,12 +245,17 @@ select:focus {
}
select {
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%23d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%23d1d1d1" d="M0,0l6,8l6-8"/></svg>') center right no-repeat;
padding-right: 3.0rem;
}
select:focus {
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="%239b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 8" width="30"><path fill="%239b4dca" d="M0,0l6,8l6-8"/></svg>');
}
select[multiple] {
background: none;
height: auto;
}
textarea {
@ -354,10 +357,18 @@ input[type='radio'] {
margin-left: 33.3333%;
}
.row .column.column-offset-40 {
margin-left: 40%;
}
.row .column.column-offset-50 {
margin-left: 50%;
}
.row .column.column-offset-60 {
margin-left: 60%;
}
.row .column.column-offset-66, .row .column.column-offset-67 {
margin-left: 66.6666%;
}
@ -438,7 +449,6 @@ input[type='radio'] {
}
.row .column .column-center {
-ms-grid-row-align: center;
align-self: center;
}
@ -521,6 +531,9 @@ ul {
table {
border-spacing: 0;
display: block;
overflow-x: auto;
text-align: left;
width: 100%;
}
@ -528,7 +541,6 @@ td,
th {
border-bottom: 0.1rem solid #e1e1e1;
padding: 1.2rem 1.5rem;
text-align: left;
}
td:first-child,
@ -541,6 +553,13 @@ th:last-child {
padding-right: 0;
}
@media (min-width: 40rem) {
table {
display: table;
overflow-x: initial;
}
}
b,
strong {
font-weight: bold;

Loading…
Cancel
Save