41 lines
858 B
CSS
41 lines
858 B
CSS
*, *:before, *:after {
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.card {
|
|
font-weight: 400;
|
|
border: 0;
|
|
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
|
|
}
|
|
|
|
.card {
|
|
position: relative;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
min-width: 0;
|
|
word-wrap: break-word;
|
|
background-color: #fff;
|
|
background-clip: border-box;
|
|
border: 1px solid rgba(0, 0, 0, 0.125);
|
|
border-radius: 0.25rem;
|
|
}
|
|
|
|
.card-body {
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
min-height: 1px;
|
|
padding: 1.25rem;
|
|
}
|
|
|
|
input, input:focus, input:active {
|
|
outline: none !important;
|
|
-moz-outline-style: none !important;
|
|
box-shadow: none !important;
|
|
}
|
|
|