aboutWebrtc.css 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. html {
  5. background-color: #edeceb;
  6. font: message-box;
  7. }
  8. .controls {
  9. font-size: 1.1em;
  10. display: inline-block;
  11. margin: 0 0.5em;
  12. }
  13. .control {
  14. margin: 0.5em 0;
  15. }
  16. .control > button {
  17. margin: 0 0.25em;
  18. }
  19. .message > p {
  20. margin: 0.5em 0.5em;
  21. }
  22. .log p {
  23. font-family: monospace;
  24. padding-left: 2em;
  25. text-indent: -2em;
  26. margin-top: 2px;
  27. margin-bottom: 2px;
  28. }
  29. #content > div {
  30. padding: 1em 2em;
  31. margin: 1em 0;
  32. border: 1px solid #afaca9;
  33. border-radius: 10px;
  34. background: none repeat scroll 0% 0% #fff;
  35. }
  36. .section-heading *
  37. {
  38. display: inline-block;
  39. }
  40. .section-heading > button {
  41. margin-left: 1em;
  42. margin-right: 1em;
  43. }
  44. .peer-connection > h3
  45. {
  46. background-color: #ddd;
  47. }
  48. .peer-connection table {
  49. width: 100%;
  50. text-align: center;
  51. border: none;
  52. }
  53. .peer-connection table th,
  54. .peer-connection table td {
  55. padding: 0.4em;
  56. }
  57. .peer-connection table tr:nth-child(even) {
  58. background-color: #ddd;
  59. }
  60. .info-label {
  61. font-weight: bold;
  62. }
  63. .section-ctrl {
  64. margin: 1em 1.5em;
  65. }
  66. div.fold-trigger {
  67. color: blue;
  68. cursor: pointer;
  69. }
  70. @media screen {
  71. .fold-closed {
  72. display: none !important;
  73. }
  74. }
  75. @media print {
  76. .no-print {
  77. display: none !important;
  78. }
  79. }