styles.css 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .dialpad {
  2. z-index: 999;
  3. }
  4. body {
  5. background-color: #333;
  6. }
  7. .inner {
  8. position: absolute;
  9. }
  10. .buttons{
  11. position: fixed;
  12. bottom: 0;
  13. right: 0;
  14. border: 10px solid rgba(255, 255, 255, 0);
  15. }
  16. .destination {
  17. background-color: rgba(0, 0, 0, 0.8);
  18. color: #fff;
  19. border-radius: 6px;
  20. padding: 10px;
  21. width: 100%;
  22. margin-bottom: 8px;
  23. font-size: 45px;
  24. font-weight: bold;
  25. border: 3px solid #333;
  26. text-align: center;
  27. min-height: 10%;
  28. display: inline-block;
  29. }
  30. .dialpad_wrapper {
  31. display: grid;
  32. grid-template-columns: 33.33% 33.33% 33.33%;
  33. grid-gap: 0;
  34. color: #444;
  35. }
  36. .dialpad_box {
  37. background-color: rgba(0, 0, 0, 0.6);
  38. color: #fff;
  39. border-radius: 6px;
  40. padding: 10px;
  41. min-height: 42px;
  42. text-align: center;
  43. cursor: pointer;
  44. -webkit-user-select: none;
  45. -moz-user-select: none;
  46. -ms-user-select: none;
  47. user-select: none;
  48. border: 3px solid #333;
  49. }
  50. .dialpad_box::selection {
  51. background: transparent;
  52. }
  53. .dialpad_box > strong {
  54. font-size: 25px;
  55. line-height: 27px;
  56. }
  57. .dialpad_box > i.fas {
  58. font-size: 20px;
  59. line-height: 15px;
  60. padding: 5px 0 5px 0;
  61. }
  62. .dialpad_box.delete {
  63. background-color: #333;
  64. }
  65. .dialpad_box.clear {
  66. background-color: #333;
  67. }
  68. .dialpad_box.mute {
  69. background-color: #333;
  70. }
  71. .dialpad_box.hold {
  72. background-color: #333;
  73. }
  74. strong {
  75. font-family: monospace;
  76. padding: 5px 5px;
  77. color: #fff;
  78. font-size: 30px;
  79. }
  80. sup {
  81. font-family: monospace;
  82. letter-spacing: 0;
  83. padding: 3px 3px;
  84. color: #fff;
  85. font-size: 10px;
  86. }
  87. .caller_id {
  88. display: flex;
  89. justify-content: center;
  90. align-items: center;
  91. background-color: rgba(0, 0, 0, 0.7);
  92. font-size: 45px;
  93. font-weight: bold;
  94. font-family: sans-serif;
  95. border: 3px solid #333;
  96. border-radius: 5px;
  97. color: #fff;
  98. padding: 20px;
  99. margin-bottom: 8px;
  100. min-height: 295px;
  101. }