| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- /* Transversal */
- .error {
- color: red;
- font-weight: 700;
- }
- .valid {
- color: green;
- }
- .annotation {
- color: #595959;
- font-size: 0.8em;
- }
- .datatable {
- width: 100% !important;
- }
- .flex-row{
- display: flex;
- flex-direction: row;
- }
- .flex-col{
- display: flex;
- flex-direction: column;
- }
- .flex-extend{
- flex: 1;
- }
- .flex-end{
- justify-content: flex-end;
- }
- .hidden {
- display: none;
- }
- .disabled{
- pointer-events: none;
- }
- .fa {
- margin-right: 0.3em;
- }
- select[multiple] {
- padding-top: 0.8em;
- min-height: 5em;
- }
- .tool-btn {
- padding-top: 0;
- padding-right: 1em;
- height: 2.5em;
- font-size: 1em;
- line-height: 2.5em;
- }
- .description {
- padding: 1em;
- margin: 1em 1em 2em 1em;
- }
- .description h1, h2, h3, h4, h5 {
- color: #333333;
- }
- .tags-list {
- list-style: none;
- }
- .tags-list li {
- display: inline;
- }
- .tags-list li:not(:first-child) {
- border-left: solid 1px #bfbfbf;
- }
- /* Index */
- .issue-title a {
- color: #2e2e2e;
- font-size: 14px;
- font-wright: 600;
- text-decoration: none;
- }
- .issue-title a:hover {
- text-decoration: underline;
- }
|