Dialog.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. $create-account-background-color: dynamic(#a1a1a2);
  2. $dialog-trigger-color: dynamic(#e5e5e5);
  3. .auth-dialog {
  4. .auth-profile-wrap {
  5. background: $base-color;
  6. color: $lightest-color;
  7. line-height: 24px;
  8. .user-name-text {
  9. font-size: 18px;
  10. font-weight: bold;
  11. }
  12. .user-post-text {
  13. font-size: 14px;
  14. }
  15. .auth-profile-img {
  16. @include border-radius($circle-border-radius);
  17. }
  18. }
  19. .x-form-text-default,
  20. .x-placeholder-label-default {
  21. padding: 15px;
  22. }
  23. .trigger-glyph-noop {
  24. cursor: default;
  25. }
  26. .x-form-trigger {
  27. text-align: right;
  28. width: 50px;
  29. }
  30. .password-trigger,
  31. .auth-email-trigger,
  32. .auth-password-trigger,
  33. .auth-envelope-trigger {
  34. &:before{
  35. top: 10px;
  36. left: -18px;
  37. position: relative;
  38. color: $dialog-trigger-color;
  39. font-size: 30px;
  40. }
  41. &.password-trigger:before,
  42. &.auth-password-trigger:before {
  43. content: "\f023";
  44. }
  45. &.auth-email-trigger:before {
  46. content: "\f007";
  47. }
  48. &.auth-envelope-trigger:before {
  49. content: "\f0e0";
  50. }
  51. }
  52. .seperator {
  53. text-align: center;
  54. color: $create-account-background-color;
  55. font-family: "Open Sans";
  56. display: inline-block;
  57. background: $lightest-color;
  58. position: relative;
  59. z-index: 1;
  60. padding: 0 8px;
  61. }
  62. .link-forgot-password {
  63. line-height: 32px;
  64. color: $base-color;
  65. text-decoration: none;
  66. margin-left: 5px;
  67. &:hover {
  68. text-decoration: underline;
  69. }
  70. }
  71. .x-btn {
  72. .x-btn-icon-el {
  73. &:before {
  74. right: 10px;
  75. font-size: 24px;
  76. position: absolute;
  77. }
  78. }
  79. }
  80. .auth-login-button .x-fa,
  81. .auth-resetpassword-button .x-fa {
  82. font-size: 32px;
  83. right: 11px;
  84. top: 10px;
  85. line-height: 16px;
  86. }
  87. .auth-create-account-button .x-fa {
  88. color: $lightest-color;
  89. right: 24px;
  90. top: 10px;
  91. }
  92. .outer-div {
  93. width: 100%;
  94. text-align: center;
  95. &:after {
  96. content: " ";
  97. width: 100%;
  98. height: 1px;
  99. background-color: $blank-page-color;
  100. position: absolute;
  101. left: 0;
  102. top: 9px;
  103. }
  104. }
  105. }