1
0

_content.scss 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. .content {
  2. flex: 1;
  3. margin-top: 1.6rem;
  4. margin-bottom: 3.2rem;
  5. article {
  6. header {
  7. margin-top: 3.2rem;
  8. margin-bottom: 3.2rem;
  9. h1, h2 {
  10. margin: 0;
  11. }
  12. h2 {
  13. margin-top: 1.0rem;
  14. font-size: 1.8rem;
  15. color: $fg-color;
  16. @media only screen and (max-device-width : 768px) {
  17. font-size: 1.6rem;
  18. }
  19. }
  20. }
  21. }
  22. }
  23. .avatar img{
  24. width: 20rem;
  25. height: auto;
  26. border-radius: 50%;
  27. @media only screen and (max-device-width : 768px) {
  28. width: 10rem;
  29. }
  30. }
  31. .list {
  32. ul {
  33. margin: 3.2rem 0 3.2rem 0;
  34. list-style: none;
  35. padding: 0;
  36. li {
  37. font-size: 1.6rem;
  38. @media only screen and (max-device-width : 768px) {
  39. font-size: 1.4rem;
  40. margin: 1.6rem 0 1.6rem 0;
  41. }
  42. span {
  43. display: inline-block;
  44. width: 20.0rem;
  45. text-align: right;
  46. margin-right: 3.0rem;
  47. @media only screen and (max-device-width : 768px) {
  48. display: block;
  49. text-align: left;
  50. }
  51. }
  52. a {
  53. text-transform: uppercase;
  54. }
  55. }
  56. }
  57. }
  58. .centered {
  59. display: flex;
  60. height: 100%;
  61. align-items: center;
  62. justify-content: center;
  63. .about {
  64. text-align: center;
  65. h1 {
  66. margin-top: 2.0rem;
  67. margin-bottom: 0.5rem;
  68. }
  69. h2 {
  70. margin-top: 1.0rem;
  71. margin-bottom: 0.5rem;
  72. font-size: 2.4rem;
  73. @media only screen and (max-device-width : 768px) {
  74. font-size: 2.0rem;
  75. }
  76. }
  77. ul {
  78. list-style: none;
  79. margin: 3.0rem 0 1.0rem 0;
  80. padding: 0;
  81. li {
  82. display: inline-block;
  83. position: relative;
  84. a {
  85. text-transform: uppercase;
  86. margin-left: 1.0rem;
  87. margin-right: 1.0rem;
  88. font-size: 1.6rem;
  89. @media only screen and (max-device-width : 768px) {
  90. font-size: 1.4rem;
  91. }
  92. i {
  93. font-weight: 400;
  94. }
  95. }
  96. }
  97. }
  98. }
  99. .error {
  100. text-align: center;
  101. h1 {
  102. margin-top: 2.0rem;
  103. margin-bottom: 0.5rem;
  104. font-size: 4.6rem;
  105. @media only screen and (max-device-width : 768px) {
  106. font-size: 3.2rem;
  107. }
  108. }
  109. h2 {
  110. margin-top: 2.0rem;
  111. margin-bottom: 3.2rem;
  112. font-size: 3.2rem;
  113. @media only screen and (max-device-width : 768px) {
  114. font-size: 2.8rem;
  115. }
  116. }
  117. }
  118. }