You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

1141 lines
22 KiB

.ui.button {
cursor: pointer;
display: inline-block;
vertical-align: middle;
min-height: 1em;
outline: 0;
border: 0;
background-color: #FAFAFA;
color: gray;
margin: 0;
padding: .8em 1.5em .875em;
font-size: 1rem;
text-transform: uppercase;
line-height: 1;
font-weight: 700;
font-style: normal;
text-align: center;
text-decoration: none;
background-image: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.05));
background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.05));
border-radius: .25em;
box-shadow: 0 0 0 1px rgba(0,0,0,.08) inset,0 -.133em 0 0 rgba(0,0,0,.1) inset;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-transition: opacity .25s ease,background-color .25s ease,color .25s ease,background .25s ease,box-shadow .25s ease;
transition: opacity .25s ease,background-color .25s ease,color .25s ease,background .25s ease,box-shadow .25s ease;
}
.ui.buttons .active.button,
.ui.active.button {
background-color: #EAEAEA;
background-image: none;
box-shadow: 0 0 0 1px rgba(0,0,0,.05) inset!important;
color: rgba(0,0,0,.7);
}
.ui.button:not(.loading):hover {
background-image: -webkit-linear-gradient(rgba(0,0,0,0), rgba(0,0,0,.08));
background-image: linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.08));
color: rgba(0,0,0,.7);
}
.ui.button.active:hover {
background-image: none;
}
.ui.button:hover .icon,
.ui.button.hover .icon {
opacity: .85;
}
.ui.button:not(.loading):active,
.ui.active.button:not(.loading):active {
background-color: #F1F1F1;
color: rgba(0,0,0,.7);
box-shadow: 0 0 0 1px rgba(0,0,0,.05) inset!important;
}
.ui.loading.button {
position: relative;
cursor: default;
background-color: #FFF!important;
color: transparent!important;
-webkit-transition: all 0s linear;
transition: all 0s linear;
}
.ui.loading.button:after {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
content: '';
background: transparent url(../images/loader-mini.gif) no-repeat 50% 50%;
}
.ui.labeled.icon.loading.button .icon {
background-color: transparent;
box-shadow: none;
}
.ui.disabled.button,
.ui.disabled.button:hover,
.ui.disabled.button.active {
background-color: #DDD!important;
cursor: default;
color: rgba(0,0,0,.5)!important;
opacity: .3!important;
background-image: none!important;
box-shadow: none!important;
}
.ui.animated.button {
position: relative;
overflow: hidden;
}
.ui.animated.button .visible.content {
position: relative;
}
.ui.animated.button .hidden.content {
position: absolute;
width: 100%;
}
.ui.animated.button .visible.content,
.ui.animated.button .hidden.content {
-webkit-transition: right .3s ease 0s;
transition: right .3s ease 0s;
}
.ui.animated.button .visible.content {
left: auto;
right: 0;
}
.ui.animated.button .hidden.content {
top: 50%;
left: auto;
right: -100%;
margin-top: -.55em;
}
.ui.animated.button:hover .visible.content {
left: auto;
right: 200%;
}
.ui.animated.button:hover .hidden.content {
left: auto;
right: 0;
}
.ui.vertical.animated.button .visible.content,
.ui.vertical.animated.button .hidden.content {
-webkit-transition: top .3s ease 0s,-webkit-transform .3s ease 0s;
transition: top .3s ease 0s,transform .3s ease 0s;
}
.ui.vertical.animated.button .visible.content {
-webkit-transform: translateY(0%);
-ms-transform: translateY(0%);
transform: translateY(0%);
right: auto;
}
.ui.vertical.animated.button .hidden.content {
top: -100%;
left: 0;
right: auto;
}
.ui.vertical.animated.button:hover .visible.content {
-webkit-transform: translateY(200%);
-ms-transform: translateY(200%);
transform: translateY(200%);
right: auto;
}
.ui.vertical.animated.button:hover .hidden.content {
top: 50%;
right: auto;
}
.ui.fade.animated.button .visible.content,
.ui.fade.animated.button .hidden.content {
-webkit-transition: opacity .3s ease 0s,-webkit-transform .3s ease 0s;
transition: opacity .3s ease 0s,transform .3s ease 0s;
}
.ui.fade.animated.button .visible.content {
left: auto;
right: auto;
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.ui.fade.animated.button .hidden.content {
opacity: 0;
left: 0;
right: auto;
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
}
.ui.fade.animated.button:hover .visible.content {
left: auto;
right: auto;
opacity: 0;
-webkit-transform: scale(0.7);
-ms-transform: scale(0.7);
transform: scale(0.7);
}
.ui.fade.animated.button:hover .hidden.content {
left: 0;
right: auto;
opacity: 1;
-webkit-transform: scale(1);
-ms-transform: scale(1);
transform: scale(1);
}
.ui.primary.buttons .button,
.ui.primary.button {
background-color: #D95C5C;
color: #FFF;
}
.ui.primary.buttons .button:hover,
.ui.primary.button:hover,
.ui.primary.buttons .active.button,
.ui.primary.button.active {
background-color: #E75859;
color: #FFF;
}
.ui.primary.buttons .button:active,
.ui.primary.button:active {
background-color: #D24B4C;
color: #FFF;
}
.ui.secondary.buttons .button,
.ui.secondary.button {
background-color: #00B5AD;
color: #FFF;
}
.ui.secondary.buttons .button:hover,
.ui.secondary.button:hover,
.ui.secondary.buttons .active.button,
.ui.secondary.button.active {
background-color: #009A93;
color: #FFF;
}
.ui.secondary.buttons .button:active,
.ui.secondary.button:active {
background-color: #00847E;
color: #FFF;
}
.ui.facebook.button {
background-color: #3B579D;
color: #FFF;
}
.ui.facebook.button:hover {
background-color: #3A59A9;
color: #FFF;
}
.ui.facebook.button:active {
background-color: #334F95;
color: #FFF;
}
.ui.twitter.button {
background-color: #4092CC;
color: #FFF;
}
.ui.twitter.button:hover {
background-color: #399ADE;
color: #FFF;
}
.ui.twitter.button:active {
background-color: #3283BC;
color: #FFF;
}
.ui.google.plus.button {
background-color: #D34836;
color: #FFF;
}
.ui.google.plus.button:hover {
background-color: #E3432E;
color: #FFF;
}
.ui.google.plus.button:active {
background-color: #CA3A27;
color: #FFF;
}
.ui.linkedin.button {
background-color: #1F88BE;
color: #FFF;
}
.ui.linkedin.button:hover {
background-color: #1394D6;
color: #FFF;
}
.ui.linkedin.button:active {
background-color: #1179AE;
color: #FFF;
}
.ui.youtube.button {
background-color: #CC181E;
color: #FFF;
}
.ui.youtube.button:hover {
background-color: #DF0209;
color: #FFF;
}
.ui.youtube.button:active {
background-color: #A50006;
color: #FFF;
}
.ui.instagram.button {
background-color: #49769C;
color: #FFF;
}
.ui.instagram.button:hover {
background-color: #4781B1;
color: #FFF;
}
.ui.instagram.button:active {
background-color: #38658A;
color: #FFF;
}
.ui.pinterest.button {
background-color: #00ACED;
color: #FFF;
}
.ui.pinterest.button:hover {
background-color: #00B9FF;
color: #FFF;
}
.ui.pinterest.button:active {
background-color: #009EDA;
color: #FFF;
}
.ui.button>.icon {
margin-right: .6em;
line-height: 1;
-webkit-transition: opacity .1s ease;
transition: opacity .1s ease;
}
.ui.left.floated.buttons,
.ui.left.floated.button {
float: left;
margin-right: .25em;
}
.ui.right.floated.buttons,
.ui.right.floated.button {
float: right;
margin-left: .25em;
}
.ui.buttons .button,
.ui.button {
font-size: 1rem;
}
.ui.mini.buttons .button,
.ui.mini.buttons .or,
.ui.mini.button {
font-size: .8rem;
}
.ui.mini.buttons .button,
.ui.mini.button {
padding: .6em .8em .73em;
}
.ui.mini.icon.buttons .button,
.ui.mini.buttons .icon.button {
padding: .6em .6em .73em;
}
.ui.tiny.buttons .button,
.ui.tiny.buttons .or,
.ui.tiny.button {
font-size: .875rem;
}
.ui.tiny.buttons .button,
.ui.tiny.buttons .button,
.ui.tiny.button {
padding: .6em .8em .73em;
}
.ui.tiny.icon.buttons .button,
.ui.tiny.buttons .icon.button {
padding: .6em .6em .73em;
}
.ui.small.buttons .button,
.ui.small.buttons .or,
.ui.small.button {
font-size: .875rem;
}
.ui.large.buttons .button,
.ui.large.buttons .or,
.ui.large.button {
font-size: 1.125rem;
}
.ui.big.buttons .button,
.ui.big.buttons .or,
.ui.big.button {
font-size: 1.25rem;
}
.ui.huge.buttons .button,
.ui.huge.buttons .or,
.ui.huge.button {
font-size: 1.375rem;
}
.ui.massive.buttons .button,
.ui.massive.buttons .or,
.ui.massive.button {
font-size: 1.5rem;
font-weight: 700;
}
.ui.tiny.buttons .or:before,
.ui.mini.buttons .or:before {
width: 1.45em;
height: 1.55em;
line-height: 1.4;
margin-left: -.725em;
margin-top: -.25em;
}
.ui.tiny.buttons .or:after,
.ui.mini.buttons .or:after {
height: 1.45em;
}
.ui.huge.loading.button:after {
background-image: url(../images/loader-small.gif);
}
.ui.massive.buttons .loading.button:after,
.ui.gigantic.buttons .loading.button:after,
.ui.massive.loading.button:after,
.ui.gigantic.loading.button:after {
background-image: url(../images/loader-medium.gif);
}
.ui.huge.loading.button:after,
.ui.huge.loading.button.active:after {
background-image: url(../images/loader-small.gif);
}
.ui.massive.buttons .loading.button:after,
.ui.gigantic.buttons .loading.button:after,
.ui.massive.loading.button:after,
.ui.gigantic.loading.button:after,
.ui.massive.buttons .loading.button.active:after,
.ui.gigantic.buttons .loading.button.active:after,
.ui.massive.loading.button.active:after,
.ui.gigantic.loading.button.active:after {
background-image: url(../images/loader-medium.gif);
}
.ui.icon.buttons .button,
.ui.icon.button {
padding: .8em .8em .875em;
}
.ui.icon.buttons .button>.icon,
.ui.icon.button>.icon {
opacity: .9;
margin: 0;
}
.ui.basic.buttons .button,
.ui.basic.button {
background-color: transparent!important;
background-image: none;
color: gray!important;
font-weight: 400;
text-transform: none;
box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
}
.ui.basic.buttons {
box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
border-radius: .25em;
}
.ui.basic.buttons .button:hover,
.ui.basic.button:hover {
background-image: none;
color: #7F7F7F!important;
box-shadow: 0 0 0 1px rgba(0,0,0,.18) inset;
}
.ui.basic.buttons .button:active,
.ui.basic.button:active {
background-color: rgba(0,0,0,.02)!important;
color: #7F7F7F!important;
box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
}
.ui.basic.buttons .button.active,
.ui.basic.button.active {
background-color: rgba(0,0,0,.05);
color: #7F7F7F;
box-shadow: 0 0 0 1px #BDBDBD inset;
}
.ui.basic.buttons .button.active:hover,
.ui.basic.button.active:hover {
background-color: rgba(0,0,0,.1);
}
.ui.basic.buttons .button {
border-left: 1px solid rgba(0,0,0,.1);
box-shadow: none;
}
.ui.basic.buttons .button:hover,
.ui.basic.buttons .button:active {
box-shadow: none;
}
.ui.basic.buttons .button.active,
.ui.basic.buttons .button.active:hover {
box-shadow: 0 0 0 1px rgba(0,0,0,.2) inset;
}
.ui.labeled.icon.buttons .button,
.ui.labeled.icon.button {
position: relative;
padding-left: 4em!important;
padding-right: 1.4em!important;
}
.ui.labeled.icon.buttons>.button>.icon,
.ui.labeled.icon.button>.icon {
position: absolute;
top: 0;
left: 0;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
width: 2.75em;
height: 100%;
padding-top: .85em;
background-color: rgba(0,0,0,.05);
text-align: center;
border-radius: .25em 0 0 .25em;
line-height: 1;
box-shadow: -1px 0 0 0 rgba(0,0,0,.05) inset;
}
.ui.labeled.icon.buttons .button>.icon {
border-radius: 0;
}
.ui.labeled.icon.buttons .button:first-child>.icon {
border-top-left-radius: .25em;
border-bottom-left-radius: .25em;
}
.ui.labeled.icon.buttons .button:last-child>.icon {
border-top-right-radius: .25em;
border-bottom-right-radius: .25em;
}
.ui.vertical.labeled.icon.buttons .button:first-child>.icon {
border-radius: 0;
border-top-left-radius: .25em;
}
.ui.vertical.labeled.icon.buttons .button:last-child>.icon {
border-radius: 0;
border-bottom-left-radius: .25em;
}
.ui.right.labeled.icon.button {
padding-left: 1.4em!important;
padding-right: 4em!important;
}
.ui.left.fluid.labeled.icon.button,
.ui.right.fluid.labeled.icon.button {
padding-left: 1.4em!important;
padding-right: 1.4em!important;
}
.ui.right.labeled.icon.button .icon {
left: auto;
right: 0;
border-radius: 0 .25em .25em 0;
box-shadow: 1px 0 0 0 rgba(0,0,0,.05) inset;
}
.ui.toggle.buttons .active.button,
.ui.buttons .button.toggle.active,
.ui.button.toggle.active {
background-color: #5BBD72!important;
color: #FFF!important;
box-shadow: none!important;
}
.ui.button.toggle.active:hover {
background-color: #58CB73!important;
color: #FFF!important;
box-shadow: none!important;
}
.ui.circular.button {
border-radius: 10em;
}
.ui.attached.button {
display: block;
box-shadow: 0 0 0 1px rgba(0,0,0,.1)!important;
}
.ui.attached.top.button {
border-radius: .25em .25em 0 0;
}
.ui.attached.bottom.button {
border-radius: 0 0 .25em .25em;
}
.ui.attached.left.button {
display: inline-block;
border-left: 0;
padding-right: .75em;
text-align: right;
border-radius: .25em 0 0 .25em;
}
.ui.attached.right.button {
display: inline-block;
padding-left: .75em;
text-align: left;
border-radius: 0 .25em .25em 0;
}
.ui.buttons .or {
position: relative;
float: left;
width: .3em;
height: 1.1em;
z-index: 3;
}
.ui.buttons .or:before {
position: absolute;
top: 50%;
left: 50%;
content: 'or';
background-color: #FFF;
margin-top: -.1em;
margin-left: -.9em;
width: 1.8em;
height: 1.8em;
line-height: 1.55;
color: #AAA;
font-style: normal;
font-weight: 400;
text-align: center;
border-radius: 500px;
box-shadow: 0 0 0 1px rgba(0,0,0,.1);
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.ui.buttons .or:after {
position: absolute;
top: 0;
left: 0;
content: ' ';
width: .3em;
height: 1.7em;
background-color: transparent;
border-top: .5em solid #FFF;
border-bottom: .5em solid #FFF;
}
.ui.fluid.buttons .or {
width: 0!important;
}
.ui.fluid.buttons .or:after {
display: none;
}
.attached.ui.buttons {
margin: 0;
border-radius: 4px 4px 0 0;
}
.attached.ui.buttons .button:first-child {
border-radius: 4px 0 0;
}
.attached.ui.buttons .button:last-child {
border-radius: 0 4px 0 0;
}
.bottom.attached.ui.buttons {
margin-top: -1px;
border-radius: 0 0 4px 4px;
}
.bottom.attached.ui.buttons .button:first-child {
border-radius: 0 0 0 4px;
}
.bottom.attached.ui.buttons .button:last-child {
border-radius: 0 0 4px;
}
.left.attached.ui.buttons {
margin-left: -1px;
border-radius: 0 4px 4px 0;
}
.left.attached.ui.buttons .button:first-child {
margin-left: -1px;
border-radius: 0 4px 0 0;
}
.left.attached.ui.buttons .button:last-child {
margin-left: -1px;
border-radius: 0 0 4px;
}
.right.attached.ui.buttons,
.right.attached.ui.buttons .button {
margin-right: -1px;
border-radius: 4px 0 0 4px;
}
.right.attached.ui.buttons .button:first-child {
margin-left: -1px;
border-radius: 4px 0 0;
}
.right.attached.ui.buttons .button:last-child {
margin-left: -1px;
border-radius: 0 0 0 4px;
}
.ui.fluid.buttons,
.ui.button.fluid,
.ui.fluid.buttons>.button {
display: block;
width: 100%;
}
.ui.\32.buttons>.button,
.ui.two.buttons>.button {
width: 50%;
}
.ui.\33.buttons>.button,
.ui.three.buttons>.button {
width: 33.333%;
}
.ui.\34.buttons>.button,
.ui.four.buttons>.button {
width: 25%;
}
.ui.\35.buttons>.button,
.ui.five.buttons>.button {
width: 20%;
}
.ui.\36.buttons>.button,
.ui.six.buttons>.button {
width: 16.666%;
}
.ui.\37.buttons>.button,
.ui.seven.buttons>.button {
width: 14.285%;
}
.ui.\38.buttons>.button,
.ui.eight.buttons>.button {
width: 12.5%;
}
.ui.\39.buttons>.button,
.ui.nine.buttons>.button {
width: 11.11%;
}
.ui.\31\30.buttons>.button,
.ui.ten.buttons>.button {
width: 10%;
}
.ui.\31\31.buttons>.button,
.ui.eleven.buttons>.button {
width: 9.09%;
}
.ui.\31\32.buttons>.button,
.ui.twelve.buttons>.button {
width: 8.3333%;
}
.ui.fluid.vertical.buttons,
.ui.fluid.vertical.buttons>.button {
display: block;
width: auto;
-moz-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
.ui.\32.vertical.buttons>.button,
.ui.two.vertical.buttons>.button {
height: 50%;
}
.ui.\33.vertical.buttons>.button,
.ui.three.vertical.buttons>.button {
height: 33.333%;
}
.ui.\34.vertical.buttons>.button,
.ui.four.vertical.buttons>.button {
height: 25%;
}
.ui.\35.vertical.buttons>.button,
.ui.five.vertical.buttons>.button {
height: 20%;
}
.ui.\36.vertical.buttons>.button,
.ui.six.vertical.buttons>.button {
height: 16.666%;
}
.ui.\37.vertical.buttons>.button,
.ui.seven.vertical.buttons>.button {
height: 14.285%;
}
.ui.\38.vertical.buttons>.button,
.ui.eight.vertical.buttons>.button {
height: 12.5%;
}
.ui.\39.vertical.buttons>.button,
.ui.nine.vertical.buttons>.button {
height: 11.11%;
}
.ui.\31\30.vertical.buttons>.button,
.ui.ten.vertical.buttons>.button {
height: 10%;
}
.ui.\31\31.vertical.buttons>.button,
.ui.eleven.vertical.buttons>.button {
height: 9.09%;
}
.ui.\31\32.vertical.buttons>.button,
.ui.twelve.vertical.buttons>.button {
height: 8.3333%;
}
.ui.black.buttons .button,
.ui.black.button {
background-color: #5C6166;
color: #FFF;
}
.ui.black.buttons .button:hover,
.ui.black.button:hover {
background-color: #4C4C4C;
color: #FFF;
}
.ui.black.buttons .button:active,
.ui.black.button:active {
background-color: #333;
color: #FFF;
}
.ui.green.buttons .button,
.ui.green.button {
background-color: #5BBD72;
color: #FFF;
}
.ui.green.buttons .button:hover,
.ui.green.button:hover,
.ui.green.buttons .active.button,
.ui.green.button.active {
background-color: #58cb73;
color: #FFF;
}
.ui.green.buttons .button:active,
.ui.green.button:active {
background-color: #4CB164;
color: #FFF;
}
.ui.red.buttons .button,
.ui.red.button {
background-color: #D95C5C;
color: #FFF;
}
.ui.red.buttons .button:hover,
.ui.red.button:hover,
.ui.red.buttons .active.button,
.ui.red.button.active {
background-color: #E75859;
color: #FFF;
}
.ui.red.buttons .button:active,
.ui.red.button:active {
background-color: #D24B4C;
color: #FFF;
}
.ui.orange.buttons .button,
.ui.orange.button {
background-color: #E96633;
color: #FFF;
}
.ui.orange.buttons .button:hover,
.ui.orange.button:hover,
.ui.orange.buttons .active.button,
.ui.orange.button.active {
background-color: #FF7038;
color: #FFF;
}
.ui.orange.buttons .button:active,
.ui.orange.button:active {
background-color: #DA683B;
color: #FFF;
}
.ui.blue.buttons .button,
.ui.blue.button {
background-color: #6ECFF5;
color: #FFF;
}
.ui.blue.buttons .button:hover,
.ui.blue.button:hover,
.ui.blue.buttons .active.button,
.ui.blue.button.active {
background-color: #1AB8F3;
color: #FFF;
}
.ui.blue.buttons .button:active,
.ui.blue.button:active {
background-color: #0AA5DF;
color: #FFF;
}
.ui.purple.buttons .button,
.ui.purple.button {
background-color: #564F8A;
color: #FFF;
}
.ui.purple.buttons .button:hover,
.ui.purple.button:hover,
.ui.purple.buttons .active.button,
.ui.purple.button.active {
background-color: #3E3773;
color: #FFF;
}
.ui.purple.buttons .button:active,
.ui.purple.button:active {
background-color: #2E2860;
color: #FFF;
}
.ui.teal.buttons .button,
.ui.teal.button {
background-color: #00B5AD;
color: #FFF;
}
.ui.teal.buttons .button:hover,
.ui.teal.button:hover,
.ui.teal.buttons .active.button,
.ui.teal.button.active {
background-color: #009A93;
color: #FFF;
}
.ui.teal.buttons .button:active,
.ui.teal.button:active {
background-color: #00847E;
color: #FFF;
}
.ui.positive.buttons .button,
.ui.positive.button {
background-color: #5BBD72!important;
color: #FFF;
}
.ui.positive.buttons .button:hover,
.ui.positive.button:hover,
.ui.positive.buttons .active.button,
.ui.positive.button.active {
background-color: #58CB73!important;
color: #FFF;
}
.ui.positive.buttons .button:active,
.ui.positive.button:active {
background-color: #4CB164!important;
color: #FFF;
}
.ui.negative.buttons .button,
.ui.negative.button {
background-color: #D95C5C!important;
color: #FFF;
}
.ui.negative.buttons .button:hover,
.ui.negative.button:hover,
.ui.negative.buttons .active.button,
.ui.negative.button.active {
background-color: #E75859!important;
color: #FFF;
}
.ui.negative.buttons .button:active,
.ui.negative.button:active {
background-color: #D24B4C!important;
color: #FFF;
}
.ui.buttons {
display: inline-block;
vertical-align: middle;
}
.ui.buttons:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.ui.buttons .button:first-child {
border-left: 0;
}
.ui.buttons .button {
float: left;
border-radius: 0;
}
.ui.buttons .button:first-child {
margin-left: 0;
border-top-left-radius: .25em;
border-bottom-left-radius: .25em;
}
.ui.buttons .button:last-child {
border-top-right-radius: .25em;
border-bottom-right-radius: .25em;
}
.ui.vertical.buttons {
display: inline-block;
}
.ui.vertical.buttons .button {
display: block;
float: none;
box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
}
.ui.vertical.buttons .button:first-child,
.ui.vertical.buttons .mini.button:first-child,
.ui.vertical.buttons .tiny.button:first-child,
.ui.vertical.buttons .small.button:first-child,
.ui.vertical.buttons .massive.button:first-child,
.ui.vertical.buttons .huge.button:first-child {
margin-top: 0;
border-radius: .25em .25em 0 0;
}
.ui.vertical.buttons .button:last-child,
.ui.vertical.buttons .mini.button:last-child,
.ui.vertical.buttons .tiny.button:last-child,
.ui.vertical.buttons .small.button:last-child,
.ui.vertical.buttons .massive.button:last-child,
.ui.vertical.buttons .huge.button:last-child,
.ui.vertical.buttons .gigantic.button:last-child {
border-radius: 0 0 .25em .25em;
}