説明なし

style.css 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. div.nsl-container[data-align="left"] {
  2. text-align: left;
  3. }
  4. div.nsl-container[data-align="center"] {
  5. text-align: center;
  6. }
  7. div.nsl-container[data-align="right"] {
  8. text-align: right;
  9. }
  10. div.nsl-container .nsl-container-buttons a {
  11. text-decoration: none !important;
  12. box-shadow: none !important;
  13. border: 0;
  14. }
  15. div.nsl-container .nsl-container-buttons {
  16. display: flex;
  17. padding: 5px 0;
  18. }
  19. div.nsl-container.nsl-container-block .nsl-container-buttons {
  20. display: inline-grid;
  21. grid-template-columns: minmax(145px, auto);
  22. }
  23. div.nsl-container-block-fullwidth .nsl-container-buttons {
  24. flex-flow: column;
  25. align-items: center;
  26. }
  27. div.nsl-container-block-fullwidth .nsl-container-buttons a,
  28. div.nsl-container-block .nsl-container-buttons a {
  29. flex: 1 1 auto;
  30. display: block;
  31. margin: 5px 0;
  32. width: 100%;
  33. }
  34. div.nsl-container-inline {
  35. margin: -5px;
  36. text-align: left;
  37. }
  38. div.nsl-container-inline .nsl-container-buttons {
  39. justify-content: center;
  40. flex-wrap: wrap;
  41. }
  42. div.nsl-container-inline .nsl-container-buttons a {
  43. margin: 5px;
  44. display: inline-block;
  45. }
  46. div.nsl-container-grid .nsl-container-buttons {
  47. flex-flow: row;
  48. align-items: center;
  49. flex-wrap: wrap;
  50. }
  51. div.nsl-container-grid .nsl-container-buttons a {
  52. flex: 1 1 auto;
  53. display: block;
  54. margin: 5px;
  55. max-width: 280px;
  56. width: 100%;
  57. }
  58. @media only screen and (min-width: 650px) {
  59. div.nsl-container-grid .nsl-container-buttons a {
  60. width: auto;
  61. }
  62. }
  63. div.nsl-container .nsl-button {
  64. cursor: pointer;
  65. vertical-align: top;
  66. border-radius: 4px;
  67. }
  68. div.nsl-container .nsl-button-default {
  69. color: #fff;
  70. display: flex;
  71. }
  72. div.nsl-container .nsl-button-icon {
  73. display: inline-block;
  74. }
  75. div.nsl-container .nsl-button-svg-container {
  76. flex: 0 0 auto;
  77. padding: 8px;
  78. display: flex;
  79. align-items: center;
  80. }
  81. div.nsl-container svg {
  82. height: 24px;
  83. width: 24px;
  84. vertical-align: top;
  85. }
  86. div.nsl-container .nsl-button-default div.nsl-button-label-container {
  87. margin: 0 24px 0 12px;
  88. padding: 10px 0;
  89. font-family: Helvetica, Arial, sans-serif;
  90. font-size: 16px;
  91. line-height: 20px;
  92. letter-spacing: .25px;
  93. overflow: hidden;
  94. text-align: center;
  95. text-overflow: clip;
  96. white-space: nowrap;
  97. flex: 1 1 auto;
  98. -webkit-font-smoothing: antialiased;
  99. -moz-osx-font-smoothing: grayscale;
  100. text-transform: none;
  101. display: inline-block;
  102. }
  103. div.nsl-container .nsl-button-google[data-skin="dark"] .nsl-button-svg-container {
  104. margin: 1px;
  105. padding: 7px;
  106. border-radius: 3px;
  107. background: #fff;
  108. }
  109. div.nsl-container .nsl-button-google[data-skin="light"] {
  110. border-radius: 1px;
  111. box-shadow: 0 1px 5px 0 rgba(0, 0, 0, .25);
  112. color: RGBA(0, 0, 0, 0.54);
  113. }
  114. div.nsl-container .nsl-button-apple .nsl-button-svg-container {
  115. padding: 0 6px;
  116. }
  117. div.nsl-container .nsl-button-apple .nsl-button-svg-container svg {
  118. height: 40px;
  119. width: auto;
  120. }
  121. div.nsl-container .nsl-button-apple[data-skin="light"] {
  122. color: #000;
  123. box-shadow: 0 0 0 1px #000;
  124. }
  125. div.nsl-container .nsl-button-facebook[data-skin="white"] {
  126. color: #000;
  127. box-shadow: inset 0 0 0 1px #000;
  128. }
  129. div.nsl-container .nsl-button-facebook[data-skin="light"] {
  130. color: #1877F2;
  131. box-shadow: inset 0 0 0 1px #1877F2;
  132. }
  133. div.nsl-container .nsl-button-apple div.nsl-button-label-container {
  134. font-size: 17px;
  135. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  136. }
  137. div.nsl-container .nsl-button-slack div.nsl-button-label-container {
  138. font-size: 17px;
  139. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  140. }
  141. div.nsl-container .nsl-button-slack[data-skin="light"] {
  142. color: #000000;
  143. box-shadow: inset 0 0 0 1px #DDDDDD;
  144. }
  145. .nsl-clear {
  146. clear: both;
  147. }
  148. .nsl-container {
  149. clear: both;
  150. }
  151. /*Button align start*/
  152. div.nsl-container-inline[data-align="left"] .nsl-container-buttons {
  153. justify-content: flex-start;
  154. }
  155. div.nsl-container-inline[data-align="center"] .nsl-container-buttons {
  156. justify-content: center;
  157. }
  158. div.nsl-container-inline[data-align="right"] .nsl-container-buttons {
  159. justify-content: flex-end;
  160. }
  161. div.nsl-container-grid[data-align="left"] .nsl-container-buttons {
  162. justify-content: flex-start;
  163. }
  164. div.nsl-container-grid[data-align="center"] .nsl-container-buttons {
  165. justify-content: center;
  166. }
  167. div.nsl-container-grid[data-align="right"] .nsl-container-buttons {
  168. justify-content: flex-end;
  169. }
  170. div.nsl-container-grid[data-align="space-around"] .nsl-container-buttons {
  171. justify-content: space-around;
  172. }
  173. div.nsl-container-grid[data-align="space-between"] .nsl-container-buttons {
  174. justify-content: space-between;
  175. }
  176. /* Button align end*/
  177. /* Redirect */
  178. #nsl-redirect-overlay {
  179. display: flex;
  180. flex-direction: column;
  181. justify-content: center;
  182. align-items: center;
  183. position: fixed;
  184. z-index: 1000000;
  185. left: 0;
  186. top: 0;
  187. width: 100%;
  188. height: 100%;
  189. backdrop-filter: blur(1px);
  190. background-color: RGBA(0, 0, 0, .32);;
  191. }
  192. #nsl-redirect-overlay-container {
  193. display: flex;
  194. flex-direction: column;
  195. justify-content: center;
  196. align-items: center;
  197. background-color: white;
  198. padding: 30px;
  199. border-radius: 10px;
  200. }
  201. #nsl-redirect-overlay-spinner {
  202. content: '';
  203. display: block;
  204. margin: 20px;
  205. border: 9px solid RGBA(0, 0, 0, .6);
  206. border-top: 9px solid #fff;
  207. border-radius: 50%;
  208. box-shadow: inset 0 0 0 1px RGBA(0, 0, 0, .6), 0 0 0 1px RGBA(0, 0, 0, .6);
  209. width: 40px;
  210. height: 40px;
  211. animation: nsl-loader-spin 2s linear infinite;
  212. }
  213. @keyframes nsl-loader-spin {
  214. 0% {
  215. transform: rotate(0deg)
  216. }
  217. to {
  218. transform: rotate(360deg)
  219. }
  220. }
  221. #nsl-redirect-overlay-title {
  222. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  223. font-size: 18px;
  224. font-weight: bold;
  225. color: #3C434A;
  226. }
  227. #nsl-redirect-overlay-text {
  228. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  229. text-align: center;
  230. font-size: 14px;
  231. color: #3C434A;
  232. }
  233. /* Redirect END*/