index.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202
  1. .promess {
  2. padding: 0em 2em;
  3. margin-bottom: 0.5em;
  4. font-weight: normal;
  5. font-size: 1.2em;
  6. }
  7. .price {
  8. padding: 0em 2em 3em;
  9. margin-top: 0em;
  10. font-size: 0.9em;
  11. }
  12. .url {
  13. width: 50%;
  14. }
  15. .launchBtn {
  16. background: #ffa319;
  17. color: #fff;
  18. &:focus {
  19. background: #e74c3c;
  20. }
  21. &.disabled {
  22. background: #deaca6;
  23. &:focus {
  24. color: #ddd;
  25. }
  26. }
  27. }
  28. .settings {
  29. width: 50%;
  30. margin: 0 auto;
  31. input, select {
  32. font-size: 1em;
  33. }
  34. input[type=text], input[type=password] {
  35. width: 100%;
  36. min-width: 4em;
  37. }
  38. }
  39. .device {
  40. margin-top: 3em;
  41. .item {
  42. display: inline-block;
  43. margin: 1em 0.75em;
  44. width: 5.5em;
  45. height: 5.5em;
  46. color: #FFF;
  47. border: 1px solid #FFF;
  48. padding: 1px;
  49. border-radius: 0.5em;
  50. cursor: pointer;
  51. text-decoration: none;
  52. font-size: 0.8em;
  53. &.active {
  54. color: #ffa319;
  55. border: 2px solid #ffa319;
  56. padding: 0;
  57. }
  58. &:hover {
  59. color: #ffa319;
  60. }
  61. > div {
  62. margin: 0.2em 0 0.1em;
  63. font-size: 3em;
  64. }
  65. }
  66. }
  67. .settingsTooltip {
  68. position: relative;
  69. span {
  70. font-size: 0.8em;
  71. vertical-align: text-top;
  72. }
  73. div {
  74. display: none;
  75. position: absolute;
  76. padding: 0.5em;
  77. width: 25em;
  78. background: #FFF;
  79. color: #000;
  80. font-size: 0.8em;
  81. border-radius: 1em;
  82. border: 2px solid #ffa319;
  83. white-space: normal;
  84. z-index: 2;
  85. }
  86. &:hover div {
  87. display: block;
  88. }
  89. }
  90. .showAdvanced {
  91. display: inline-block;
  92. margin-top: 2em;
  93. color: #FFF;
  94. text-decoration: none;
  95. font-size: 0.9em;
  96. &:hover {
  97. color: #ffa319;
  98. }
  99. }
  100. .currentSettings {
  101. font-size: 0.9em;
  102. span {
  103. color: #ffa319;
  104. &:after {
  105. color: #FFF;
  106. content: ",";
  107. }
  108. &:last-child:after {
  109. content: "";
  110. }
  111. }
  112. }
  113. .advanced {
  114. margin: 1em 0 0;
  115. display: table;
  116. width: 100%;
  117. text-align: left;
  118. border-spacing: 0.75em;
  119. > div {
  120. display: table-row;
  121. > div {
  122. display: table-cell;
  123. width: 75%;
  124. &.label {
  125. width: 25%;
  126. white-space: nowrap;
  127. vertical-align: middle;
  128. }
  129. }
  130. }
  131. .subTable {
  132. display: table;
  133. border-spacing: 0;
  134. width: 100%;
  135. > div {
  136. display: table-row;
  137. > div {
  138. display: table-cell;
  139. padding: 0 0 0.75em;
  140. }
  141. }
  142. }
  143. }
  144. .features {
  145. display: table;
  146. width: 50%;
  147. margin: 6em auto 0;
  148. font-size: 0.9em;
  149. color: #413;
  150. > div {
  151. width: 33.3%;
  152. display: table-cell;
  153. padding: 0 1.5em;
  154. }
  155. }
  156. input[type=submit], input.url {
  157. padding: 0 0.5em;
  158. margin: 0.5em;
  159. font-size: 1.2em;
  160. height: 2em;
  161. border: 0 solid;
  162. border-radius: 0.5em;
  163. box-shadow: 0.1em 0.2em 0 0 #5e2846;
  164. outline: none;
  165. }
  166. input[type=submit]:hover {
  167. color: #ddd;
  168. }
  169. input[type=submit].clicked {
  170. color: #ddd;
  171. position: relative;
  172. left: 0.1em;
  173. top: 0.2em;
  174. box-shadow: none;
  175. }