47 lines
1.1 KiB
CSS
47 lines
1.1 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: Roboto,-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
button {
|
|
padding: 7px 15px;
|
|
font-family: inherit;
|
|
font-weight: 500;
|
|
font-size: 16px;
|
|
line-height: 24px;
|
|
text-align: center;
|
|
border: 1px solid #e9ebeb;
|
|
border-bottom: 1px solid #e1e3e3;
|
|
border-radius: 4px;
|
|
background-color: #fff;
|
|
color: rgba(14,30,37,.87);
|
|
box-shadow: 0 2px 4px 0 rgba(14,30,37,.12);
|
|
transition: all .2s ease;
|
|
transition-property: background-color,color,border,box-shadow;
|
|
outline: 0;
|
|
cursor: pointer;
|
|
margin-bottom: 3px;
|
|
}
|
|
|
|
button:focus, button:hover {
|
|
background-color: #f5f5f5;
|
|
color: rgba(14,30,37,.87);
|
|
box-shadow: 0 8px 12px 0 rgba(233,235,235,.16), 0 2px 8px 0 rgba(0,0,0,.08);
|
|
text-decoration: none;
|
|
}
|
|
|
|
|
|
.btn-danger {
|
|
background-color: #fb6d77;
|
|
border-color: #fb6d77;
|
|
border-bottom-color: #e6636b;
|
|
color: #fff;
|
|
}
|
|
.btn-danger:focus, .btn-danger:hover {
|
|
background-color: #fa3b49;
|
|
border-color: #fa3b49;
|
|
color: #fff;
|
|
}
|