styles.css 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: "Public";
  4. font-style: normal;
  5. font-weight: 400;
  6. src: url("assets/fonts/PublicSans-Regular.ttf") format("TrueType");
  7. }
  8. @font-face {
  9. font-family: "Public";
  10. font-style: normal;
  11. font-weight: 300;
  12. src: url("assets/fonts/PublicSans-Light.ttf") format("TrueType");
  13. }
  14. @font-face {
  15. font-family: "Ortica";
  16. font-style: bold;
  17. font-weight: 300;
  18. src: url("assets/fonts/Ortica-Bold.woff2") format("woff2");
  19. }
  20. * {
  21. margin: 0;
  22. padding: 0;
  23. }
  24. button {
  25. all: initial;
  26. }
  27. body {
  28. font-family: "Public", sans-serif;
  29. font-weight: 400;
  30. color: rgb(0, 0, 0);
  31. overflow: hidden;
  32. }
  33. #content {
  34. padding: 1.5vh 1vw 2vh 1vw;
  35. position: fixed;
  36. top: 0;
  37. left: 0;
  38. width: 100vw;
  39. height: 100vh;
  40. display: flex;
  41. justify-content: center;
  42. align-items: center;
  43. z-index: 1;
  44. }
  45. #content svg {
  46. position: absolute;
  47. height: 50%;
  48. }
  49. #content svg path {
  50. cursor: pointer;
  51. }
  52. #content svg#fill {
  53. fill: rgb(255, 255, 255);
  54. /* mix blend mode est dépendant du stacking context */
  55. mix-blend-mode: overlay;
  56. opacity: 0.4;
  57. }
  58. #content svg#stroke {
  59. position: absolute;
  60. fill: none;
  61. stroke: rgb(0, 0, 0);
  62. stroke-width: 1px;
  63. }
  64. #buttons_container {
  65. position: fixed;
  66. top: 0;
  67. left: 0;
  68. z-index: 1;
  69. display: flex;
  70. align-items: center;
  71. margin: 1.5vh 1vw 2vh 1vw;
  72. font-size: 1rem;
  73. }
  74. #buttons_container .niveau_profondeur {
  75. display: flex;
  76. flex-direction: column;
  77. justify-content: space-between;
  78. height: 100%;
  79. margin-right: 30px;
  80. width: 5vw;
  81. }
  82. #buttons_container .niveau_profondeur p {
  83. font-weight: 300;
  84. cursor: pointer;
  85. }
  86. #buttons_container .niveau_profondeur p.selected {
  87. font-weight: 400;
  88. text-decoration: underline;
  89. }
  90. #buttons_container .niveau_profondeur p:hover {
  91. font-weight: 400;
  92. }
  93. #buttons_container .arrow {
  94. margin-right: 14px;
  95. }
  96. #buttons_container .arrow svg {
  97. height: 2rem;
  98. width: auto;
  99. fill: rgb(255, 255, 255);
  100. stroke: rgb(0, 0, 0);
  101. stroke-width: 0;
  102. cursor: pointer;
  103. margin-top: 4px;
  104. transition: fill 0.3s ease-out;
  105. }
  106. #buttons_container .arrow svg:hover {
  107. fill: rgb(110, 110, 110);
  108. }
  109. #buttons_container .arrow svg:active {
  110. fill: rgb(50, 50, 50);
  111. }
  112. #buttons_container .arrow:last-of-type {
  113. margin-right: 0;
  114. margin-left: 14px;
  115. }
  116. #buttons_container .mode {
  117. display: flex;
  118. align-items: center;
  119. justify-content: space-around;
  120. background-color: rgb(255, 255, 255);
  121. margin: 0;
  122. margin-right: 14px;
  123. padding: 10px 12px;
  124. border-radius: 50px;
  125. cursor: pointer;
  126. border: solid 0.8px rgb(110, 110, 110);
  127. color: rgba(0, 0, 0, 0.5);
  128. transition: border 0.1s ease-out, color 0.1s ease-out, padding 0.3s ease-out;
  129. font-weight: 300;
  130. }
  131. #buttons_container .mode svg {
  132. height: 2rem;
  133. }
  134. #buttons_container .mode svg .thick {
  135. transition: stroke-width 0.3s ease-out, fill 0.3s ease-out, stroke 0.3s ease-out;
  136. stroke-width: 0.8;
  137. stroke: rgb(110, 110, 110);
  138. }
  139. #buttons_container .mode svg .thin {
  140. transition: stroke-width 0.3s ease-out, fill 0.3s ease-out, stroke 0.3s ease-out;
  141. stroke-width: 0.5;
  142. stroke: rgb(110, 110, 110);
  143. }
  144. #buttons_container .mode svg .circle-fill {
  145. fill: rgb(110, 110, 110);
  146. }
  147. #buttons_container .mode .mode_container {
  148. overflow: hidden;
  149. width: auto;
  150. transition: max-width 0.4s ease-out, margin-left 0.4s ease-out, margin-right 0.4s ease-out;
  151. max-width: 0px;
  152. margin: 0px 5px 0px 10px;
  153. max-width: 200px;
  154. }
  155. #buttons_container .mode .mode_container p {
  156. white-space: nowrap;
  157. height: fit-content;
  158. margin-bottom: 1.5px;
  159. }
  160. #buttons_container .mode.active {
  161. padding: 10px 12px !important;
  162. font-weight: 400;
  163. border: solid 1.2px rgb(0, 0, 0);
  164. color: rgb(0, 0, 0);
  165. }
  166. #buttons_container .mode.active svg .thick {
  167. stroke-width: 1.2;
  168. stroke: rgb(0, 0, 0);
  169. }
  170. #buttons_container .mode.active svg .thin {
  171. stroke-width: 0.6;
  172. stroke: rgb(0, 0, 0);
  173. }
  174. #buttons_container .mode.active svg .circle-fill {
  175. fill: rgb(0, 0, 0);
  176. }
  177. #buttons_container .mode.active .mode_container {
  178. max-width: 200px !important;
  179. margin: 0px 5px 0px 10px !important;
  180. }
  181. #buttons_container .mode:hover {
  182. padding: 10px 12px !important;
  183. color: rgb(50, 50, 50);
  184. border-color: rgb(50, 50, 50);
  185. }
  186. #buttons_container .mode:hover svg .thick, #buttons_container .mode:hover svg .thin {
  187. stroke: rgb(50, 50, 50);
  188. }
  189. #buttons_container .mode:hover svg .circle-fill {
  190. fill: rgb(50, 50, 50);
  191. }
  192. #buttons_container .mode:hover .mode_container {
  193. max-width: 200px !important;
  194. margin: 0px 5px 0px 10px !important;
  195. }
  196. #buttons_container .mode.collapsed {
  197. padding: 10px 10px;
  198. }
  199. #buttons_container .mode.collapsed .mode_container {
  200. max-width: 0px;
  201. margin-left: 0px;
  202. margin-right: 0px;
  203. }
  204. #buttons_container .mode:last-of-type {
  205. margin-right: 0;
  206. }
  207. #global_nav {
  208. position: fixed;
  209. bottom: 0;
  210. left: 0;
  211. margin: 1.5vh 1vw 2vh 1vw;
  212. z-index: 1;
  213. font-size: 1rem;
  214. }
  215. #global_nav h1 {
  216. font-family: "Ortica";
  217. font-size: 1.7em;
  218. margin: 0px 0px 17px 5px;
  219. }
  220. #global_nav #menu {
  221. display: flex;
  222. align-items: center;
  223. }
  224. #global_nav #menu #search {
  225. display: flex;
  226. align-items: center;
  227. }
  228. #global_nav #menu #search input[type=search] {
  229. height: 2rem;
  230. width: 10vw;
  231. padding-left: 13px;
  232. padding-right: 30px;
  233. padding-bottom: 1px;
  234. font-family: "Public";
  235. font-weight: 300;
  236. border-radius: 20px;
  237. border: solid rgb(110, 110, 110) 1.2px;
  238. color: rgb(110, 110, 110);
  239. background-color: rgb(255, 255, 255);
  240. transition: color 0.3s ease-out;
  241. }
  242. #global_nav #menu #search input[type=search]:hover {
  243. color: rgb(50, 50, 50);
  244. }
  245. #global_nav #menu #search input[type=search]:active {
  246. color: rgb(0, 0, 0);
  247. }
  248. #global_nav #menu #search button {
  249. background: none;
  250. border: none;
  251. cursor: pointer;
  252. }
  253. #global_nav #menu #search button svg {
  254. margin-top: 5px;
  255. margin-left: -45px;
  256. height: 1.3rem;
  257. fill: rgb(110, 110, 110);
  258. transition: fill 0.3s ease-out;
  259. }
  260. #global_nav #menu #search button svg:hover {
  261. fill: rgb(50, 50, 50);
  262. }
  263. #global_nav #menu .menu_item {
  264. font-weight: 300;
  265. display: flex;
  266. align-items: center;
  267. cursor: pointer;
  268. margin: 0 10px;
  269. padding-bottom: 2px;
  270. }
  271. #global_nav #menu .menu_item svg {
  272. width: 1.3rem;
  273. height: 1.3rem;
  274. margin-right: 3px;
  275. fill: rgb(0, 0, 0);
  276. }
  277. #global_nav #menu .menu_item:hover {
  278. font-weight: 400;
  279. }
  280. @media only screen and (max-width: 1440px) {
  281. #buttons_container, #global_nav {
  282. font-size: 0.7rem;
  283. }
  284. #buttons_container .arrow svg {
  285. height: 1.2rem;
  286. }
  287. #buttons_container .mode {
  288. padding: 8px 10px 8px 7px;
  289. }
  290. #buttons_container .mode svg {
  291. height: 1.2rem;
  292. }
  293. #buttons_container .mode .mode_container {
  294. margin: 0px 3px 0px 5px;
  295. }
  296. #buttons_container .mode.active {
  297. padding: 8px 10px 8px 7px !important;
  298. }
  299. #buttons_container .mode.active .mode_container {
  300. margin: 0px 3px 0px 5px !important;
  301. }
  302. #buttons_container .mode:hover {
  303. padding: 8px 10px 8px 7px !important;
  304. }
  305. #buttons_container .mode:hover .mode_container {
  306. margin: 0px 3px 0px 5px !important;
  307. }
  308. #buttons_container .mode.collapsed {
  309. padding: 8px 2px;
  310. }
  311. #global_nav h1 {
  312. margin: 0px 0px 8px 5px;
  313. }
  314. #global_nav #menu #search input[type=search] {
  315. height: 1.5rem;
  316. font-size: 0.7rem;
  317. }
  318. #global_nav #menu #search button svg {
  319. margin-left: -23px;
  320. width: 1rem;
  321. }
  322. #global_nav #menu .menu_item svg {
  323. width: 1rem;
  324. height: 1rem;
  325. }
  326. }
  327. /*# sourceMappingURL=styles.css.map */