You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
2.0 KiB

  1. .container-alt {
  2. width: 700px;
  3. margin: 0 auto;
  4. margin-top: 40px;
  5. @media screen and (max-width: 740px) {
  6. width: 100%;
  7. margin: 0;
  8. }
  9. }
  10. .logo-container {
  11. margin: 100px auto;
  12. margin-bottom: 50px;
  13. @media screen and (max-width: 400px) {
  14. margin: 30px auto;
  15. margin-bottom: 20px;
  16. }
  17. h1 {
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. img {
  22. height: 42px;
  23. margin-right: 10px;
  24. }
  25. a {
  26. display: flex;
  27. justify-content: center;
  28. align-items: center;
  29. color: $primary-text-color;
  30. text-decoration: none;
  31. outline: 0;
  32. padding: 12px 16px;
  33. line-height: 32px;
  34. font-family: 'mastodon-font-display', sans-serif;
  35. font-weight: 500;
  36. font-size: 14px;
  37. }
  38. }
  39. }
  40. .compose-standalone {
  41. .compose-form {
  42. width: 400px;
  43. margin: 0 auto;
  44. padding: 20px 0;
  45. margin-top: 40px;
  46. box-sizing: border-box;
  47. @media screen and (max-width: 400px) {
  48. width: 100%;
  49. margin-top: 0;
  50. padding: 20px;
  51. }
  52. }
  53. }
  54. .card-standalone__body,
  55. .media-gallery-standalone__body {
  56. overflow: hidden;
  57. }
  58. .account-header {
  59. width: 400px;
  60. margin: 0 auto;
  61. display: flex;
  62. font-size: 13px;
  63. line-height: 18px;
  64. box-sizing: border-box;
  65. padding: 20px 0;
  66. padding-bottom: 0;
  67. margin-bottom: -30px;
  68. margin-top: 40px;
  69. @media screen and (max-width: 440px) {
  70. width: 100%;
  71. margin: 0;
  72. margin-bottom: 10px;
  73. padding: 20px;
  74. padding-bottom: 0;
  75. }
  76. .avatar {
  77. width: 40px;
  78. height: 40px;
  79. margin-right: 8px;
  80. img {
  81. width: 100%;
  82. height: 100%;
  83. display: block;
  84. margin: 0;
  85. border-radius: 4px;
  86. }
  87. }
  88. .name {
  89. flex: 1 1 auto;
  90. color: $secondary-text-color;
  91. width: calc(100% - 88px);
  92. .username {
  93. display: block;
  94. font-weight: 500;
  95. text-overflow: ellipsis;
  96. overflow: hidden;
  97. }
  98. }
  99. .logout-link {
  100. display: block;
  101. font-size: 32px;
  102. line-height: 40px;
  103. margin-left: 8px;
  104. }
  105. }