index.scss 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. @import "..\\..\\app-let.scss";
  2. .Us {
  3. width: 750px;
  4. overflow-x: hidden;
  5. box-sizing: border-box;
  6. position: relative;
  7. #myCanvas {
  8. position: absolute;
  9. left: 150%;
  10. }
  11. .login {
  12. margin: 1em 0;
  13. background-color: $main-color-light;
  14. color: $color-FFF;
  15. }
  16. .user {
  17. position: absolute;
  18. top: 235px;
  19. left: 50%;
  20. transform: translateX(-50%);
  21. border-radius: 50%;
  22. padding: 0;
  23. width: 200px;
  24. height: 200px;
  25. .userImg {
  26. width: 200px;
  27. height: 200px;
  28. }
  29. }
  30. .main {
  31. padding: 0 35px;
  32. .us_cell {
  33. display: flex;
  34. font-size: $default-font-size;
  35. height: 2em;
  36. line-height: 2em;
  37. margin: 0 0 16px 0;
  38. &:last-child {
  39. margin-bottom: 0;
  40. }
  41. .right {
  42. flex-basis: 80px;
  43. text-align: right;
  44. }
  45. .left {
  46. flex: 1;
  47. .text {
  48. vertical-align: middle;
  49. margin-left: 5px;
  50. }
  51. }
  52. .img {
  53. width: 36px;
  54. height: 36px;
  55. vertical-align: middle;
  56. }
  57. }
  58. }
  59. }