style.css 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164
  1. .wrapper{
  2. display: flex;
  3. flex-direction: column;
  4. width: 100%;
  5. min-width: 98vw;
  6. }
  7. .header{
  8. display: flex;
  9. justify-content: space-between;
  10. height: 12vh;
  11. max-height: 80px;
  12. background:#d3b714;
  13. }
  14. .header img{
  15. height: 80px;
  16. }
  17. .menu{
  18. display: inline-flex;
  19. align-items: center;
  20. text-align: center;
  21. }
  22. .menu a{
  23. width: 80px;
  24. font-size: 20px;
  25. text-decoration: none;
  26. color:#000;
  27. }
  28. .main{
  29. display: flex;
  30. justify-content: space-between;
  31. height:100%;
  32. min-height: 85vh;
  33. }
  34. .main aside{
  35. width: 210px;
  36. align-items: flex-start;
  37. background: #c798b9;
  38. align-items: center;
  39. text-align: center;
  40. padding-top:20px;
  41. }
  42. .main aside:last-child{
  43. background: #9cb1c7;
  44. }
  45. aside a{
  46. font-size: 25px;
  47. text-decoration: none;
  48. color:#000;
  49. }
  50. .footer{
  51. display: flex;
  52. left: 0;
  53. bottom: 0;
  54. background:#86ec86;
  55. height: 4vh;
  56. align-items: center;
  57. justify-content:center;
  58. }
  59. .footer a{
  60. font-size: 20px;
  61. text-decoration: none;
  62. color:#000;
  63. }
  64. .content{
  65. display: flex;
  66. flex-wrap: wrap;
  67. justify-content: space-around;
  68. }
  69. .block{
  70. display: flex;
  71. border: 3px solid #bbb;
  72. border-radius: 20px;
  73. flex-grow: 1;
  74. flex-direction: column;
  75. align-items: center;
  76. width: 150px;
  77. min-width:25%;
  78. margin: 10px;
  79. padding: 10px;
  80. align-content: space-around;
  81. }
  82. .block img{
  83. width: 100px;
  84. height: 100px;
  85. border-radius: 50%;
  86. border: 10px solid #9e99b7;
  87. bottom: 0;
  88. transition: transform 1s;
  89. }
  90. .block img:hover{
  91. border: 10px solid black;
  92. }
  93. .block h2{
  94. font-size: 30px;
  95. margin:20px;
  96. font-weight: 600;
  97. }
  98. .block p{
  99. text-align: justify;
  100. margin:20px;
  101. }
  102. .btn {
  103. display: flex;
  104. margin-top: auto;
  105. margin-bottom: 5px;
  106. }
  107. .btn a{
  108. display: inline-flex;
  109. align-items: center;
  110. justify-content: center;
  111. font-size: 20px;
  112. text-decoration: none;
  113. color:#fff;
  114. background: #757;
  115. height: 30px;
  116. width: 70px;
  117. border-radius: 15px;
  118. }
  119. .holder{
  120. display: flex;
  121. border: 5px solid #000;
  122. border-radius: 50px 50px 0px 0px;
  123. flex-grow: 1;
  124. width: 100%;
  125. height: 100px;
  126. margin: 10px;
  127. flex-wrap: wrap;
  128. overflow: hidden;
  129. background: #0e7f12;
  130. }
  131. .item{
  132. display: inline-flex;
  133. background: #fd644d;
  134. order: 1;
  135. height: 50%;
  136. width: 50%;
  137. display: inline-flex;
  138. align-items: center;
  139. justify-content: center;
  140. font-size: 20px;
  141. text-decoration: none;
  142. }
  143. .item:nth-child(2){
  144. background: #4983b2;
  145. order: 4;
  146. width: calc(100%/3);
  147. }
  148. .item:nth-child(3){
  149. background: #663797;
  150. order: 3;
  151. width: calc(100%/3);
  152. }
  153. .item:nth-child(4){
  154. background: #0e7f12;
  155. order: 5;
  156. width: calc(100%/3);
  157. }
  158. .item:last-child{
  159. background: #fda429;
  160. order: 2;
  161. }