Lechars

Untitled

Mar 5th, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. body{
  2. max-width: 1180px;
  3. margin-left:auto;
  4. margin-right:auto;
  5. }
  6.  
  7. /*header*/
  8.  
  9. nav{
  10. height: 50px;
  11. background-color:black;
  12.  
  13. }
  14.  
  15. nav ul{
  16.  
  17. color:#ece8e8;
  18. max-width: 50%;
  19. display:flex;
  20. list-style-type: none;
  21. margin: 0;
  22. padding: 0;
  23. justify-content:space-around;
  24. align-items: center;
  25. height: 100%;
  26.  
  27. }
  28.  
  29. ul li{
  30. font-weight:bold;
  31. font-size: 1.5em;
  32. margin:0;
  33. }
  34.  
  35.  
  36. ul li:nth-child(2){
  37. font-size:1em;
  38. padding-top: 5px;
  39. }
  40.  
  41.  
  42. ul li:nth-child(3){
  43. font-size:1em;
  44. padding-top:5px;
  45. }
  46.  
  47.  
  48. /*caroussel*/
  49.  
  50. .carousel{
  51. background-color: #ece8e8;
  52. min-height:300px;
  53. }
  54.  
  55. /*wanted*/
  56.  
  57. section h2{
  58. min-height: 100px;
  59. color:grey;
  60. text-align:center;
  61. padding-top:40px;
  62. font-size:1.3em;
  63.  
  64. }
  65.  
  66. h2 span {
  67. font-size: 1.5em;
  68. }
  69.  
  70. /*portrait*/
  71.  
  72. .portrait{
  73. display: flex;
  74. justify-content:space-around;
  75. align-items: center;
  76.  
  77. }
  78.  
  79. section > article{
  80. height:370px;
  81. width:370px;
  82. background-color:#ece8e8;
  83. margin:10px;
  84. }
  85.  
  86. hr {
  87. margin-top: 100px;
  88. }
  89.  
  90. /*form*/
  91.  
  92. input{
  93. min-width: 900px;
  94. margin-bottom:10px;
  95. margin-left:10%;
  96. margin-right:10%;
  97. }
  98.  
  99. textarea{
  100. min-width: 900px;
  101. margin-bottom:10px;
  102. margin-left:10%;
  103. margin-right:10%;
  104. }
  105.  
  106. @media (max-width:961px){
  107.  
  108. body{
  109. max-width: 961px;
  110. margin-left:auto;
  111. margin-right:auto;
  112. }
  113.  
  114. /*header*/
  115.  
  116. ul li{
  117. font-size: 1em;
  118. margin:0;
  119. }
  120.  
  121.  
  122. ul li:nth-child(2){
  123. font-size:0.8em;
  124. }
  125.  
  126.  
  127. ul li:nth-child(3){
  128. font-size:0.8em;
  129. }
  130.  
  131. /*section*/
  132.  
  133. .carousel{
  134. display: none;
  135. }
  136.  
  137. .portrait{
  138. display: none;
  139. }
  140.  
  141. /*form*/
  142.  
  143. input{
  144. min-width:600px;
  145. margin-left:7%;
  146. margin-right:7%;
  147. }
  148.  
  149. textarea{
  150. min-width:600px;
  151. margin-left:7%;
  152. margin-right:7%;
  153. }
  154.  
  155.  
  156. }
Add Comment
Please, Sign In to add comment