| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- /* 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;
- margin-left: 1em;
- }
- /* Index */
- .issue-title a {
- color: #2e2e2e;
- font-size: 14px;
- font-wright: 600;
- text-decoration: none;
- }
- .issue-title a:hover {
- text-decoration: underline;
- }
|