33 lines
712 B
CSS
33 lines
712 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap');
|
|
|
|
body {
|
|
font-family: 'Noto Sans', sans-serif;
|
|
background-color: #F8F9FA;
|
|
}
|
|
|
|
.table th {
|
|
cursor: pointer;
|
|
}
|
|
|
|
[dir="rtl"] .table th {
|
|
text-align: right;
|
|
}
|
|
|
|
.form-control {
|
|
display: block;
|
|
width: 100%;
|
|
padding: 0.375rem 0.75rem;
|
|
font-size: 1rem;
|
|
font-weight: 400;
|
|
line-height: 1.5;
|
|
color: #212529;
|
|
background-color: #fff;
|
|
background-clip: padding-box;
|
|
border: 1px solid #ced4da;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
border-radius: 0.25rem;
|
|
transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
|
|
}
|