style.css 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487
  1. /*@import url(http://);*/
  2. @font-face {
  3. font-family: 'Ubuntu-R';
  4. src: url('font/ubuntu/Ubuntu-R.ttf') format('truetype');
  5. font-weight: normal;
  6. font-style: normal;
  7. }
  8. @font-face {
  9. font-family: 'UbuntuMono-R';
  10. src: url('font/ubuntu/UbuntuMono-R.ttf') format('truetype');
  11. font-weight: normal;
  12. font-style: normal;
  13. }
  14. @font-face {
  15. font-family: 'Ubuntu-C';
  16. src: url('font/ubuntu/Ubuntu-C.ttf') format('truetype');
  17. font-weight: normal;
  18. font-style: normal;
  19. }
  20. * {
  21. -webkit-box-sizing: border-box;
  22. -moz-box-sizing: border-box;
  23. box-sizing: border-box;
  24. }
  25. html, body {
  26. margin: 0;
  27. padding: 0;
  28. font-family: 'Ubuntu-R', helvetica, sans-serif;
  29. font-size: 1em;
  30. line-height: 1.4;
  31. height: 100%;
  32. }
  33. .clear { clear: both; }
  34. #map-lh {
  35. position: fixed;
  36. width: 100%;
  37. height: 100%;
  38. background: url(img/lh.png) no-repeat;
  39. opacity: 0.7;
  40. background-size: cover;
  41. }
  42. h1 { font-family: 'UbuntuMono-R', helvetica, sans-serif; }
  43. h2 { font-family: 'Ubuntu-C', helvetica, sans-serif; }
  44. #logo {
  45. position: fixed;
  46. left: 40px;
  47. top: 40px;
  48. width: 160px;
  49. height: 180px;
  50. background: url(img/logo.png) no-repeat 0 0;
  51. background-size: 100% auto;
  52. }
  53. #menu {
  54. position: fixed;
  55. left: 40px;
  56. bottom: 20px;
  57. width: 160px;
  58. height: 185px;
  59. font-family: 'Ubuntu-C', helvetica, sans-serif;
  60. }
  61. #menu ul {
  62. margin: 0;
  63. padding: 0;
  64. }
  65. #menu li {
  66. list-style: none;
  67. margin-top: 10px;
  68. padding: 0 10px 1px 10px;
  69. border-radius: 14px;
  70. background: #000;
  71. -webkit-transition: background .2s;
  72. -moz-transition: background .2s;
  73. -o-transition: background .2s;
  74. transition: background .2s;
  75. }
  76. #menu li:hover {
  77. background: #FF3F00;
  78. -webkit-transition: background .2s;
  79. -moz-transition: background .2s;
  80. -o-transition: background .2s;
  81. transition: background .2s;
  82. }
  83. #menu a {
  84. color: #fff;
  85. text-decoration: none;
  86. }
  87. #content {
  88. position: absolute;
  89. left: 240px;
  90. right: 30px;
  91. /*width: 80vw;*/
  92. /*height: 100%;*/
  93. padding-bottom: 15px;
  94. overflow: hidden;
  95. margin: 40px 7vw 0 7vw;
  96. }
  97. #content div {
  98. vertical-align: top;
  99. }
  100. #content h1 {
  101. color: #FF3F00;
  102. text-align: right;
  103. padding: 0 8px;
  104. }
  105. #content h1:before {
  106. position: absolute;
  107. content: '//';
  108. font-size: .8em;
  109. letter-spacing: -2px;
  110. margin: 3px 0 0 -40px;
  111. font-weight: normal;
  112. }
  113. #content h2 {
  114. color: #FF3F00;
  115. }
  116. .btnhover {
  117. display: none;
  118. }
  119. .logo:hover .btnhover {
  120. display: block;
  121. }
  122. .logo:hover .btn {
  123. display: none;
  124. }
  125. #logo_lieu {
  126. display: flex;
  127. justify-content: center;
  128. flex-wrap: wrap;
  129. /*width: 100%;*/
  130. margin-top: 8px;
  131. }
  132. .logo {
  133. font-family: 'Ubuntu-C', helvetica, sans-serif;
  134. /*font-size: 1.3em;*/
  135. color: white;
  136. width: 16%;
  137. height: 200px;
  138. min-width: 200px;
  139. margin: 25px 2vw 25px 2vw;
  140. position: relative;
  141. }
  142. .logo a{
  143. text-align: center;
  144. }
  145. .logo p {
  146. opacity: 0;
  147. position: absolute;
  148. top:-50px;
  149. font-size: 0.9em;
  150. margin-left: 10px;
  151. width: 70%;
  152. }
  153. .logo:hover p {
  154. opacity: 1;
  155. transition: 1s;
  156. z-index: 1000;
  157. top: 0px;
  158. }
  159. #logo_lieu {
  160. /*overflow: hidden;*/
  161. }
  162. /*
  163. #logo1{
  164. top: 25%;
  165. left: 57%;
  166. }
  167. #logo2{
  168. top: 0px;
  169. left: 45%;
  170. }
  171. #logo3{
  172. top: 40%;
  173. left: 7%;
  174. }
  175. #logo4{
  176. top: 32%;
  177. left: 16%;
  178. }
  179. #logo5{
  180. top: 35%;
  181. left: 56%;
  182. }
  183. #logo6{
  184. top: 39%;
  185. left: 47%;
  186. }
  187. #logo7{
  188. top: 40%;
  189. left: 70%;
  190. }
  191. #logo8{
  192. top: 1%;
  193. left: 35%;
  194. }
  195. #logo9{
  196. top: 44%;
  197. left: 38%;
  198. }
  199. #logo10{
  200. top: 50%;
  201. left: 11%;
  202. }*/
  203. /*.fp-controlArrow{
  204. width: 0px;
  205. height: 0px;
  206. border-radius: 180px;
  207. background: #FF3F00;
  208. margin: 75px;
  209. transform: translate(-50%, -50%);
  210. }*/
  211. .background-lieu {
  212. width: 0px;
  213. height: 0px;
  214. border-radius: 180px;
  215. background: #FF3F00;
  216. margin: 75px;
  217. transform: translate(-50%, -50%);
  218. }
  219. .logo:hover .background-lieu {
  220. transition: 0.5s;
  221. width: 175px;
  222. height: 175px;
  223. }
  224. #content #logo_lieu a {
  225. text-decoration: none;
  226. position: absolute;
  227. z-index: 990;
  228. }
  229. .btn img, .btnhover img{
  230. width: 9vw;
  231. min-width: 150px;
  232. min-height: 150px;
  233. height: 9vw;
  234. background-size: 100% 100%;
  235. }
  236. #content .logo:hover {
  237. -webkit-transform: rotate(-3deg) scale(1.2);
  238. -moz-transform: rotate(-3deg) scale(1.2);
  239. -o-transform: rotate(-3deg) scale(1.2);
  240. transform: rotate(-3deg) scale(1.2);
  241. -webkit-transition: all .2s;
  242. -moz-transition: all .2s;
  243. -o-transition: all .2s;
  244. transition: all .2s;
  245. }
  246. #content .edito {
  247. z-index: 99999;
  248. position: fixed;
  249. top: 20px;
  250. right: -215px;
  251. width: 300px;
  252. height: auto;
  253. text-align: left;
  254. }
  255. #content .edito h2 {
  256. font-family: 'UbuntuMono-R', helvetica, sans-serif;
  257. margin: 10px 0;
  258. }
  259. #content .edito img {
  260. width: 100%!important;
  261. height: auto!important;
  262. padding: 20px 0!important;
  263. }
  264. #content .bloc-text {
  265. width: 100%;
  266. height: auto;
  267. font-size: .8em;
  268. padding: 0 20px 5px 20px;
  269. margin-bottom: 20px;
  270. color: #FF3F00;
  271. background: #fff;
  272. text-align: left;
  273. }
  274. .bloc-text-artiste,
  275. .bloc-text {
  276. border-style: solid;
  277. border-width: 4px;
  278. -webkit-border-image: url(img/border.svg) 4 round;
  279. -moz-border-image: url(img/border.svg) 4 round;
  280. -o-border-image: url(img/border.svg) 4 round;
  281. border-image: url(img/border.svg) 4 round;
  282. }
  283. #content .bloc-text a {
  284. color: #000;
  285. }
  286. #content .bloc-text img {
  287. width: 50%;
  288. height: auto;
  289. float: right;
  290. margin-left: 20px;
  291. }
  292. #content .bloc-text .ps {
  293. margin-top: -1em;
  294. font-size: .8em;
  295. font-style: italic;
  296. }
  297. #content .presse {
  298. text-align: center;
  299. }
  300. #content .presse img {
  301. width: 15%;
  302. min-width: 65px;
  303. max-width: 100px;
  304. height: auto;
  305. float: none;
  306. display: inline-block;
  307. margin: 20px;
  308. vertical-align: middle;
  309. }
  310. #content .presse img:nth-child(2){
  311. /*background-color: red;*/
  312. width: 30%;
  313. max-width: 150px;
  314. }
  315. #content .column {
  316. width: 33.333%;
  317. height: auto;
  318. margin: 0 -4px -4px 0;
  319. display: inline-block;
  320. padding: 10px;
  321. }
  322. #content .col-2 {
  323. width: 50%;
  324. }
  325. #content .bloc {
  326. width: 700px;
  327. max-width: 100%;
  328. height: auto;
  329. margin: 0 10px;
  330. display: inline-block;
  331. }
  332. /*content-artiste*/
  333. #section2 h2 {
  334. font-size: 2.5em;
  335. margin: 15px 0 0 15px;
  336. }
  337. #section2 h3 {
  338. margin-top: 5px;
  339. font-size: 1.5em;
  340. }
  341. .content-artiste {
  342. margin: 20px 70px;
  343. padding-bottom: 40px;
  344. display: inline-flex;
  345. }
  346. .images {
  347. width: 50%;
  348. height: auto;
  349. margin: 0 20px;
  350. }
  351. .images img {
  352. width: 100%;
  353. margin-bottom: 30px;
  354. }
  355. .bloc-text-artiste {
  356. width: 50%;
  357. height: 100%;
  358. margin: 0 20px;
  359. padding: 5px 20px;
  360. background: #fff;
  361. text-align: left;
  362. }
  363. .bloc-text-artiste p {
  364. font-size: .8em;
  365. }
  366. .bloc-text-artiste p a {
  367. color: #FF3F00;
  368. }
  369. .header-expo {
  370. display: flex;
  371. justify-content: center;
  372. }
  373. .header-expo .titles{
  374. text-align: center;
  375. }
  376. .header-expo .btn img{
  377. margin-top:15px;
  378. width: 200px;
  379. height: 200px;
  380. }
  381. #fullpage .lieu {
  382. min-width: 200px!important;
  383. min-height: 200px!important;
  384. -webkit-transform: rotate(0deg) scale(1)!important;
  385. -moz-transform: rotate(0deg) scale(1)!important;
  386. -o-transform: rotate(0deg) scale(1)!important;
  387. transform: rotate(0deg) scale(1)!important;
  388. }
  389. #fullpage .titles {
  390. margin: auto 40px;
  391. }
  392. @media screen and (max-width: 1000px){
  393. #content .column { width: 50%; }
  394. #content .col-2 { width: 100%; }
  395. .content-artiste { margin: 20px 50px; display: block; }
  396. .images,
  397. .bloc-text-artiste { width: 85%; margin: 0 auto;v}
  398. #fullpage .lieu { display: none; }
  399. p { font-size: 1.5em; }
  400. }
  401. @media screen and (min-width: 1600px){
  402. html {
  403. /*zoom: 1.2;
  404. -ms-zoom: 1.2;
  405. -webkit-zoom: 1.2;
  406. /*-moz-transform: scale(1.2);*/
  407. }
  408. }