35 lines
617 B
CSS
35 lines
617 B
CSS
body {
|
|
/* font-family: Arial, Helvetica, sans-serif; */
|
|
font-size: 13px;
|
|
min-height: 600px;
|
|
margin: 0px;
|
|
overflow-y: scroll;
|
|
padding: 20px;
|
|
width: 600px;
|
|
}
|
|
|
|
input[type="text"].display, input[type="text"].display:active, input[type="text"].display:focus, input[type="text"].display:hover {
|
|
background-color: transparent;
|
|
border-style: none;
|
|
font-size: 0.9em;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
width: 100%;
|
|
}
|
|
|
|
select {
|
|
text-align: left !important;
|
|
}
|
|
|
|
|
|
.cursor-default {
|
|
cursor: default;
|
|
}
|
|
|
|
.cursor-pointer {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.text-sm {
|
|
font-size: 0.9em;
|
|
} |