Dialog.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  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. .trigger-glyph-noop {
  20. cursor: default;
  21. }
  22. .x-form-trigger {
  23. text-align: right;
  24. width: 50px;
  25. }
  26. .password-trigger,
  27. .auth-email-trigger,
  28. .auth-password-trigger,
  29. .auth-envelope-trigger {
  30. &:before{
  31. top: 10px;
  32. left: -18px;
  33. position: relative;
  34. color: $dialog-trigger-color;
  35. font-size: 30px;
  36. }
  37. &.password-trigger:before,
  38. &.auth-password-trigger:before {
  39. content: "\f023";
  40. }
  41. &.auth-email-trigger:before {
  42. content: "\f007";
  43. }
  44. &.auth-envelope-trigger:before {
  45. content: "\f0e0";
  46. }
  47. }
  48. .seperator {
  49. text-align: center;
  50. color: $create-account-background-color;
  51. font-family: "Open Sans";
  52. display: inline-block;
  53. background: $lightest-color;
  54. position: relative;
  55. z-index: 1;
  56. padding: 0 8px;
  57. }
  58. .link-forgot-password {
  59. line-height: 32px;
  60. color: $base-color;
  61. text-decoration: none;
  62. margin-left: 5px;
  63. &:hover {
  64. text-decoration: underline;
  65. }
  66. }
  67. .x-btn {
  68. .x-btn-icon-el {
  69. &:before {
  70. right: 10px;
  71. font-size: 24px;
  72. position: absolute;
  73. }
  74. }
  75. }
  76. .auth-login-button .x-fa,
  77. .auth-resetpassword-button .x-fa {
  78. font-size: 32px;
  79. right: 11px;
  80. top: 10px;
  81. line-height: 16px;
  82. }
  83. .auth-create-account-button .x-fa {
  84. color: $lightest-color;
  85. right: 24px;
  86. top: 10px;
  87. }
  88. .outer-div {
  89. width: 100%;
  90. text-align: center;
  91. &:after {
  92. content: " ";
  93. width: 100%;
  94. height: 1px;
  95. background-color: $blank-page-color;
  96. position: absolute;
  97. left: 0;
  98. top: 9px;
  99. }
  100. }
  101. }