updated with rounded corners (#35)
This commit is contained in:
parent
573f3d0c76
commit
cb37a50abc
|
@ -2,7 +2,7 @@
|
||||||
outline: 0;
|
outline: 0;
|
||||||
border: 0;
|
border: 0;
|
||||||
padding: .5em 1em;
|
padding: .5em 1em;
|
||||||
border-radius: .1em;
|
border-radius: 1em;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
background: var(--blue);
|
background: var(--blue);
|
||||||
color: white;
|
color: white;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
.input {
|
.input {
|
||||||
border-radius: .1em;
|
border-radius: 1em;
|
||||||
padding: .5em 1em;
|
padding: .5em 1em;
|
||||||
background: white;
|
background: white;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
.share__box {
|
.share__box {
|
||||||
box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
|
box-shadow: rgba(0, 0, 0, 0.06) 0px 1px 3px, rgba(0, 0, 0, 0.12) 0px 1px 2px;
|
||||||
background: #fff;
|
background: #fff;
|
||||||
border-radius: 0.2em;
|
border-radius: 1em;
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
|
@ -164,6 +164,7 @@ table tr>*:last-child {
|
||||||
border-radius: 2px;
|
border-radius: 2px;
|
||||||
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
|
border-radius: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.card.floating {
|
.card.floating {
|
||||||
|
@ -457,7 +458,7 @@ body.rtl .card .card-title>*:first-child {
|
||||||
.card .card-action.full .action {
|
.card .card-action.full .action {
|
||||||
flex: 1;
|
flex: 1;
|
||||||
padding: 2em;
|
padding: 2em;
|
||||||
border-radius: 0.2em;
|
border-radius: 1em;
|
||||||
border: 1px solid rgba(0, 0, 0, 0.1);
|
border: 1px solid rgba(0, 0, 0, 0.1);
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,7 +94,7 @@ body.rtl #listing {
|
||||||
width: calc(33% - 1em);
|
width: calc(33% - 1em);
|
||||||
margin: .5em;
|
margin: .5em;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
border-radius: 0.2em;
|
border-radius: 1em;
|
||||||
box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .12);
|
box-shadow: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .12);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue