main.css 945 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .table tbody>tr>td{
  2. vertical-align: middle;
  3. }
  4. .record-type span {
  5. margin: 0px 2px;
  6. padding: 5px 10px;
  7. display: block;
  8. background: black;
  9. color: white;
  10. font-weight: bold;
  11. }
  12. .record-type span.CNAME {
  13. background: orange;
  14. }
  15. .record-type span.MX {
  16. background: magenta;
  17. }
  18. .record-type span.TXT {
  19. background: limegreen;
  20. }
  21. .record-type span.SPF {
  22. background: teal;
  23. }
  24. .record-type span.SRV {
  25. background: olive;
  26. }
  27. .table {
  28. table-layout: fixed;
  29. }
  30. .table .type {
  31. width: 80px;
  32. }
  33. .table .name {
  34. width: 200px;
  35. }
  36. .table .actions {
  37. width: 120px;
  38. }
  39. .table .proxy {
  40. width: 60px;
  41. }
  42. .table .value {
  43. overflow: hidden;
  44. white-space: nowrap;
  45. width: 280px;
  46. }
  47. #records .table input {
  48. width: 100%;
  49. }
  50. #records .table tr.saving {
  51. background: lightyellow;
  52. }
  53. #records .table td.multi-input label {
  54. display: block;
  55. }
  56. #records .table td.multi-input div {
  57. margin-bottom: 10px;
  58. }
  59. .nav.nav-tabs {
  60. margin-bottom: 10px;
  61. }
  62. .form-control.ssl {
  63. width: 10em;
  64. }