logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

containers.scss (1979B)


  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: 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. .media-gallery-standalone__body {
  55. overflow: hidden;
  56. }
  57. .account-header {
  58. width: 400px;
  59. margin: 0 auto;
  60. display: flex;
  61. font-size: 13px;
  62. line-height: 18px;
  63. box-sizing: border-box;
  64. padding: 20px 0;
  65. padding-bottom: 0;
  66. margin-bottom: -30px;
  67. margin-top: 40px;
  68. @media screen and (max-width: 440px) {
  69. width: 100%;
  70. margin: 0;
  71. margin-bottom: 10px;
  72. padding: 20px;
  73. padding-bottom: 0;
  74. }
  75. .avatar {
  76. width: 40px;
  77. height: 40px;
  78. margin-right: 8px;
  79. img {
  80. width: 100%;
  81. height: 100%;
  82. display: block;
  83. margin: 0;
  84. border-radius: 4px;
  85. }
  86. }
  87. .name {
  88. flex: 1 1 auto;
  89. color: $ui-secondary-color;
  90. width: calc(100% - 88px);
  91. .username {
  92. display: block;
  93. font-weight: 500;
  94. text-overflow: ellipsis;
  95. overflow: hidden;
  96. }
  97. }
  98. .logout-link {
  99. display: block;
  100. font-size: 32px;
  101. line-height: 40px;
  102. margin-left: 8px;
  103. }
  104. }