| OLD | NEW |
| 1 /* Global styles */ | 1 /* Global styles */ |
| 2 * { | 2 * { |
| 3 margin: 0; | 3 margin: 0; |
| 4 padding: 0; | 4 padding: 0; |
| 5 font: 400 14px 'Montserrat', sans-serif; | |
| 6 color: #333; | |
| 7 box-sizing: border-box; | 5 box-sizing: border-box; |
| 8 } | 6 } |
| 9 | 7 |
| 10 body { | 8 body { |
| 11 padding-top: 56px; | 9 padding-top: 56px; |
| 10 color: #333; |
| 11 font: 400 14px 'Montserrat', sans-serif; |
| 12 } | 12 } |
| 13 | 13 |
| 14 .content { | 14 .content { |
| 15 padding-left: 10%; | 15 padding-left: 10%; |
| 16 font: 400 14px 'Montserrat', sans-serif; | 16 font: 400 14px 'Montserrat', sans-serif; |
| 17 } | 17 } |
| 18 | 18 |
| 19 .content-centered { | 19 .content-centered { |
| 20 padding-left: 10%; | 20 padding-left: 10%; |
| 21 padding-right: 10%; | 21 padding-right: 10%; |
| 22 font: 400 14px 'Montserrat', sans-serif; | 22 font: 400 14px 'Montserrat', sans-serif; |
| 23 } | 23 } |
| 24 | 24 |
| 25 .content-centered-big { | 25 .content-centered-big { |
| 26 padding-left: 5%; | 26 padding-left: 5%; |
| 27 padding-right: 5%; | 27 padding-right: 5%; |
| 28 font: 400 14px 'Montserrat', sans-serif; | 28 font: 400 14px 'Montserrat', sans-serif; |
| 29 } | 29 } |
| 30 | 30 |
| 31 h1 { | 31 h1 { |
| 32 font: 400 18px 'Montserrat', sans-serif; | 32 font: 400 18px 'Montserrat', sans-serif; |
| 33 } | 33 } |
| 34 | 34 |
| 35 h2 { |
| 36 font: 400 16px 'Montserrat', sans-serif; |
| 37 } |
| 38 |
| 35 .memberList { | 39 .memberList { |
| 36 display: table; | 40 display: table; |
| 37 } | 41 } |
| 38 | 42 |
| 39 .memberItem { | 43 .memberItem { |
| 40 display: table-row; | 44 display: table-row; |
| 41 } | 45 } |
| 42 | 46 |
| 43 .memberName, .memberValue { | 47 .memberName, .memberValue { |
| 44 display: table-cell; | 48 display: table-cell; |
| (...skipping 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1458 padding: 10px; | 1462 padding: 10px; |
| 1459 width: 100%; | 1463 width: 100%; |
| 1460 box-sizing: border-box; | 1464 box-sizing: border-box; |
| 1461 overflow-x: scroll; | 1465 overflow-x: scroll; |
| 1462 } | 1466 } |
| 1463 script-inset-wrapped .sourceRow { | 1467 script-inset-wrapped .sourceRow { |
| 1464 display: flex; | 1468 display: flex; |
| 1465 flex-direction: row; | 1469 flex-direction: row; |
| 1466 width: 100%; | 1470 width: 100%; |
| 1467 } | 1471 } |
| 1468 script-inset-wrapped .sourceItem, .sourceItemCurrent { | 1472 script-inset-wrapped .sourceItem, |
| 1473 script-inset-wrapped .sourceItemCurrent { |
| 1469 vertical-align: top; | 1474 vertical-align: top; |
| 1470 font: 400 14px consolas, courier, monospace; | 1475 font: 400 14px consolas, courier, monospace; |
| 1471 line-height: 125%; | 1476 line-height: 125%; |
| 1472 white-space: pre; | 1477 white-space: pre; |
| 1473 max-width: 0; | 1478 max-width: 0; |
| 1474 } | 1479 } |
| 1475 script-inset-wrapped .currentLine { | 1480 script-inset-wrapped .currentLine { |
| 1476 background-color: #fff; | 1481 background-color: #fff; |
| 1477 } | 1482 } |
| 1478 script-inset-wrapped .currentCol { | 1483 script-inset-wrapped .currentCol { |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1707 | 1712 |
| 1708 vm-connect-target > button.delete-button:hover { | 1713 vm-connect-target > button.delete-button:hover { |
| 1709 background: #ff0000; | 1714 background: #ff0000; |
| 1710 } | 1715 } |
| 1711 | 1716 |
| 1712 /* vm-connect */ | 1717 /* vm-connect */ |
| 1713 | 1718 |
| 1714 vm-connect ul { | 1719 vm-connect ul { |
| 1715 list-style-type: none; | 1720 list-style-type: none; |
| 1716 } | 1721 } |
| OLD | NEW |