style.css 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284
  1. html,body{
  2. margin: 0;
  3. padding: 0;
  4. font-weight: normal;
  5. font-size: 1rem;
  6. height: 100%;
  7. /* color: #323232ff!important; */
  8. }
  9. html{
  10. background: #f7f4ed;
  11. }
  12. header{
  13. position: fixed;
  14. display: flex;
  15. align-items: baseline;
  16. justify-content: space-between;
  17. width: 100%;
  18. z-index: 999;
  19. background: #f7f4ed;
  20. }
  21. .logo{
  22. display: flex;
  23. align-items: baseline;
  24. padding: 10px 0 20px 50px;
  25. }
  26. h1{
  27. font-family: 'ubuntu-m-webfont';
  28. font-size: 36px;
  29. margin: 0;
  30. }
  31. h2{
  32. font-family: 'ubuntu-m-webfont';
  33. font-size: 14px;
  34. margin: 0;
  35. }
  36. nav{
  37. display: flex;
  38. height: 20px;
  39. font-size: 12px;
  40. padding-right: 50px;
  41. }
  42. ul, li{
  43. list-style: none;
  44. }
  45. nav li{
  46. margin: 0 10px;
  47. font-family: 'ubuntu-r-webfont';
  48. }
  49. nav li:nth-child(1){
  50. border-left: 1px solid black;
  51. border-right: 1px solid black;
  52. padding: 0px 10px;
  53. }
  54. nav li:last-child{
  55. background: #4d4b4bff;
  56. padding: 0 5px;
  57. color: #f7f4ed;
  58. border-radius: 3px;
  59. text-transform: uppercase;
  60. line-height: 1.9;
  61. font-size: 10px;
  62. }
  63. /* main */
  64. h3{
  65. font-family: 'ubuntu-r-webfont';
  66. font-size: 10rem;
  67. line-height: 9rem;
  68. }
  69. p{
  70. font-family: 'ubuntu-m-webfont';
  71. font-size: 12px;
  72. line-height: 20px;
  73. }
  74. button{
  75. font-family: 'ubuntu-m-webfont'!important;
  76. font-size: 12px!important;
  77. border-radius: 5px!important;
  78. border: none!important;
  79. padding: 8px 12px!important;
  80. }
  81. button[name="join_us"]{
  82. background: #69cdcfff;
  83. color: #f7f4ed;
  84. }
  85. #ddb{
  86. background: #f7f4ed;
  87. }
  88. #ddb button[name="join_us"]{
  89. position: absolute;
  90. }
  91. /* ddb */
  92. #ddb{
  93. height: 100vh;
  94. }
  95. #ddb h3{
  96. pointer-events: none;
  97. position: absolute;
  98. margin: 130px 0 200px 50px;
  99. z-index: 1;
  100. }
  101. #ddb .content{
  102. pointer-events: none;
  103. margin: 0 50px;
  104. }
  105. #ddb .txt{
  106. pointer-events: none;
  107. position: absolute;
  108. width: 500px;
  109. font-size: 12px;
  110. top: 460px;
  111. left: 730px;
  112. z-index: 1;
  113. }
  114. #ddb .txt img{
  115. position: relative;
  116. top: -30px;
  117. left: -290px;
  118. z-index: 1;
  119. }
  120. #ddb .txt img:nth-of-type(2) {
  121. top: -230px;
  122. left: 150%;
  123. }
  124. #ddb .images{
  125. overflow-y: auto;
  126. overflow-x: hidden;
  127. position: relative;
  128. height: 100%;
  129. }
  130. #ddb .images img{
  131. position: absolute;
  132. min-width: 100px;
  133. height: auto;
  134. }
  135. #ddb .images img:nth-child(1){
  136. top: 85%;
  137. left: 70%;
  138. }
  139. #ddb .images img:nth-child(2){
  140. top: 105%;
  141. left: 10%;
  142. }
  143. #ddb .images img:nth-child(3){
  144. width: 300px;
  145. height: auto;
  146. top: 200%;
  147. left: 2%;
  148. }
  149. #ddb .images img:nth-child(4){
  150. width: 150px;
  151. height: auto;
  152. top: 190%;
  153. left: 40%;
  154. }
  155. #ddb .images img:nth-child(5){
  156. width: 350px;
  157. top: 180%;
  158. left: 75%;
  159. }
  160. #ddb .images img:nth-child(6){
  161. top: 230%;
  162. left: 25%;
  163. }
  164. #ddb .images img:nth-child(7){
  165. top: 255%;
  166. left: 60%;
  167. }
  168. #ddb .images img:nth-child(8){
  169. width: 300px;
  170. height: auto;
  171. top: 300%;
  172. left: 7%;
  173. }
  174. #ddb .images img:nth-child(9){
  175. width: 10%;
  176. top: 320%;
  177. left: 35%;
  178. }
  179. .simplebar-track.simplebar-vertical{
  180. top: 100px;
  181. width: 0px;
  182. left: -20px;
  183. }
  184. /* scrollbar */
  185. /* video */
  186. #videos{
  187. background: #69cdcfff;
  188. height: auto;
  189. }
  190. .liste_movies{
  191. display: flex;
  192. flex-flow: column;
  193. align-content:center;
  194. padding-top: 65px;
  195. }
  196. .liste_movies ul{
  197. width: 65%;
  198. display: flex;
  199. margin: 20px auto 0 auto ;
  200. padding: 0;
  201. }
  202. .liste_movies ul li{
  203. width: 250px;
  204. height: auto;
  205. }
  206. .liste_movies ul li img{
  207. width: 100%;
  208. height: auto;
  209. }
  210. .liste_movies img:nth-child(1){
  211. width: 65%;
  212. height: auto;
  213. margin: auto;
  214. }
  215. .liste_movies li img{
  216. filter: grayscale(1);
  217. width: 200px;
  218. height: auto;
  219. margin: 20px 20px 0 0;
  220. transition: filter 0.2s;
  221. }
  222. .liste_movies li img:hover{
  223. filter: grayscale(0);
  224. transition: filter 0.2s;
  225. }
  226. /* showrooms */
  227. #showroom{
  228. background: #f7f4ed;
  229. }
  230. #showroom{
  231. padding: 0px 50px;
  232. }
  233. #showroom h3{
  234. margin: 0;
  235. }
  236. #showroom .txt{
  237. width: 500px;
  238. }