cd67-model.less 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594
  1. .no-print { /* Comportement défini dans le layout */ }
  2. .no-screen { /* Comportement défini dans le layout */ }
  3. .liste-principale { /* Comportement défini dans le fichier de script cd67-listes.js */ }
  4. .liste-secondaire { /* Comportement défini dans le fichier de script cd67-listes.js */ }
  5. body , html{
  6. height:100%;
  7. }
  8. #wrapper{
  9. min-height:95%;
  10. position:relative;
  11. }
  12. footer{
  13. position:relative;
  14. background-color: #ccc;
  15. text-align: center;
  16. left: 0;
  17. bottom: 0;
  18. width: 100%;
  19. }
  20. .search-form{
  21. display:inline-flex;
  22. flex-direction:row;
  23. padding-top: 10px;
  24. }
  25. label[for=recherche]{
  26. padding-right:5px;
  27. }
  28. .navbar-login {
  29. width: 300px;
  30. padding: 10px;
  31. padding-bottom: 0px;
  32. }
  33. .check-box{
  34. width: 34px;
  35. }
  36. .show-menu .main-container-cache{
  37. display: block;
  38. }
  39. .main-container-cache {
  40. position: fixed;
  41. top: 0;
  42. left: 0;
  43. z-index: 3;
  44. width: 100%;
  45. height: 100%;
  46. background: #000000;
  47. opacity: 0.2;
  48. display: none;
  49. }
  50. .navbar-collapse{
  51. position: fixed;
  52. left: 0;
  53. -webkit-transition: all 0.3s ease 0s;
  54. -moz-transition: all 0.3s ease 0s;
  55. -o-transition: all 0.3s ease 0s;
  56. -ms-transition: all 0.3s ease 0s;
  57. transition: all 0.3s ease 0s;
  58. top:0;
  59. z-index:100;
  60. padding: 0;
  61. }
  62. .navbar-collapse.collapse{
  63. display: block;
  64. }
  65. .navbar-collapse.hidden{
  66. left: -100%;
  67. }
  68. .menu_principal{
  69. margin: 0;
  70. padding: 110px 40px 40px;
  71. background-color: #fff;
  72. li{
  73. list-style: none;
  74. }
  75. a, div{
  76. color:#fff;
  77. -webkit-transition: all 0.3s ease 0s;
  78. -moz-transition: all 0.3s ease 0s;
  79. -o-transition: all 0.3s ease 0s;
  80. -ms-transition: all 0.3s ease 0s;
  81. transition: all 0.3s ease 0s;
  82. font-size: 24px;
  83. line-height: 24px;
  84. border-bottom: 1px solid #fff;
  85. display: block;
  86. }
  87. a:hover, div:hover{
  88. background-color: #237C4E;
  89. cursor:pointer;
  90. color:white;
  91. }
  92. }
  93. .submenu a{
  94. padding:15px 47px;
  95. background-color: #fff;
  96. }
  97. .submenu li:first-child{
  98. font-weight:bolder;
  99. }
  100. .submenu li{
  101. margin-left:30px;
  102. }
  103. .menu-button{
  104. border: medium none;
  105. color: transparent;
  106. height: 50px;
  107. padding: 0;
  108. position: fixed;
  109. text-indent: 2.5em;
  110. width: 50px;
  111. z-index: 101;
  112. left: 15px;
  113. border: 10px solid #DA1251;
  114. top: 3px;
  115. border-radius: 25px;
  116. box-shadow: 0px 1px 4px 1px #cccccc;
  117. cursor: pointer;
  118. }
  119. .menu-button:before, .menu-button:after, .menu-button span {
  120. background: #fff none repeat scroll 0 0;
  121. }
  122. .menu-button span {
  123. height: 3px;
  124. left: 0;
  125. overflow: hidden;
  126. position: absolute;
  127. text-indent: 200%;
  128. transition: opacity 0.25s ease 0s;
  129. width: 100%;
  130. top: 15px;
  131. }
  132. .menu-button:before, .menu-button:after {
  133. content: "";
  134. height: 3px;
  135. left: 0;
  136. pointer-events: none;
  137. position: absolute;
  138. top: 50%;
  139. transform-origin: 50% 50% 0;
  140. transition: transform 0.25s ease 0s;
  141. width: 100%;
  142. }
  143. .title::before{
  144. padding-right:15px;
  145. left:45px;
  146. font-family:FontAwesome;}
  147. .title{
  148. padding:0;
  149. font-family:sans-serif;
  150. }
  151. .menu-1{
  152. padding : 15px 45px;
  153. }
  154. .menu-button:after {
  155. transform: translate3d(0px, 10px, 0px) scale3d(1, 1, 1);
  156. }
  157. .menu-button:before {
  158. transform: translate3d(0px, -10px, 0px) scale3d(1, 1, 1);
  159. }
  160. .menu-button--open span {
  161. opacity: 0;
  162. }
  163. .menu-button--open:before {
  164. transform: rotate3d(0, 0, 1, 45deg);
  165. }
  166. .menu-button--open:after {
  167. transform: rotate3d(0, 0, 1, -45deg);
  168. }
  169. .navbar-login-session {
  170. padding: 10px;
  171. padding-bottom: 0px;
  172. padding-top: 0px;
  173. }
  174. .icon-size {
  175. font-size: 87px;
  176. }
  177. .navigation {
  178. /* Collapsed */
  179. width: 0;
  180. overflow: hidden;
  181. position: fixed;
  182. top: 0;
  183. left: 0;
  184. height: 100%;
  185. }
  186. .page-wrap {
  187. width: 100%;
  188. float: right;
  189. margin-top: -1px;
  190. }
  191. .navigation {
  192. transition: width 0.3s ease;
  193. }
  194. #menu-toggle-2 {
  195. margin-left: -10px;
  196. }
  197. #wrapper {
  198. padding-left: 0;
  199. padding-top: 60px;
  200. -webkit-transition: all 0.5s ease;
  201. -moz-transition: all 0.5s ease;
  202. -o-transition: all 0.5s ease;
  203. transition: all 0.5s ease;
  204. overflow: hidden;
  205. }
  206. #sidebar-wrapper {
  207. z-index: 1000;
  208. position: fixed;
  209. left: 250px;
  210. width: 0;
  211. height: 100%;
  212. margin-left: -250px;
  213. overflow-y: auto;
  214. -webkit-transition: all 0.5s ease;
  215. -moz-transition: all 0.5s ease;
  216. -o-transition: all 0.5s ease;
  217. transition: all 0.5s ease;
  218. overflow: hidden;
  219. }
  220. #wrapper.toggled #sidebar-wrapper {
  221. width: 250px;
  222. }
  223. .fixed-brand {
  224. width: auto;
  225. }
  226. .navbar {
  227. margin-bottom: 1px;
  228. }
  229. .navbar-brand {
  230. margin-top: -12px;
  231. }
  232. h1 {
  233. margin-right: 0;
  234. margin-top: 5px;
  235. font-size: 30px;
  236. padding-bottom: 5px;
  237. span {
  238. font-size: 14px;
  239. }
  240. }
  241. .navbar-inner{
  242. ul li {
  243. float: left;
  244. display: block;
  245. }
  246. }
  247. #topbar {
  248. text-align: center;
  249. }
  250. #titre {
  251. display: inline-block;
  252. }
  253. .row {
  254. margin-right: 0;
  255. }
  256. .sidebar-nav {
  257. position: absolute;
  258. top: 56px;
  259. margin: 0;
  260. padding: 0;
  261. list-style: none;
  262. margin-top: 9px;
  263. white-space:nowrap;
  264. li a {
  265. display: block;
  266. text-decoration: none;
  267. }
  268. > .sidebar-brand {
  269. height: 65px;
  270. font-size: 18px;
  271. line-height: 60px;
  272. }
  273. > .sidebar-brand a {
  274. color: #999999;
  275. }
  276. > .sidebar-brand a:hover {
  277. color: #fff;
  278. background: none;
  279. }
  280. }
  281. .active_tab {
  282. background-color: white;
  283. border-radius: 5px;
  284. padding-bottom: 1px;
  285. }
  286. .navbar-default .navbar-toggle:hover {
  287. background-color: #f8f8f8;
  288. }
  289. #tab {
  290. color: white;
  291. }
  292. #content_title {
  293. margin-bottom: 18px;
  294. padding-top: 34px;
  295. }
  296. .brand{
  297. padding-left:70px;
  298. padding-bottom : 8px;
  299. margin-top:8px;
  300. }
  301. .credentials{
  302. padding-top:24px
  303. }
  304. .no-margin {
  305. margin: 0;
  306. }
  307. #sidebar-wrapper {
  308. width: 50px;
  309. margin-top: 59px;
  310. }
  311. #wrapper {
  312. width: auto;
  313. }
  314. .dropdown span , .dropdown strong{
  315. color : black;
  316. white-space : nowrap
  317. }
  318. #wrapper.toggled-2 #sidebar-wrapper {
  319. width: 200px;
  320. }
  321. #wrapper.toggled-2 {
  322. padding-left: 200px;
  323. width: auto;
  324. }
  325. #page-content-wrapper {
  326. padding: 10px;
  327. position: relative;
  328. -webkit-transition: all 0.5s ease;
  329. -moz-transition: all 0.5s ease;
  330. -o-transition: all 0.5s ease;
  331. transition: all 0.5s ease;
  332. }
  333. #wrapper.toggled #page-content-wrapper {
  334. position: relative;
  335. margin-right: 0;
  336. padding-left: 250px;
  337. }
  338. #wrapper.toggled-2 #page-content-wrapper {
  339. position: relative;
  340. margin-right: 0;
  341. margin-left: -200px;
  342. -webkit-transition: all 0.5s ease;
  343. -moz-transition: all 0.5s ease;
  344. -o-transition: all 0.5s ease;
  345. transition: all 0.5s ease;
  346. width: auto;
  347. }
  348. .tabulation {
  349. text-indent: 20px;
  350. }
  351. ul {
  352. margin: 0;
  353. padding: 0;
  354. list-style: none;
  355. }
  356. #breadcrumbs-one {
  357. background: #eee;
  358. overflow: hidden;
  359. width: 100%;
  360. li {
  361. float: left;
  362. }
  363. a {
  364. padding: .7em 0.5em .7em 0.5em;
  365. float: left;
  366. color: #444;
  367. position: relative;
  368. }
  369. li:first-child a {
  370. border-radius: 5px 0 0 5px;
  371. padding: .7em 0.5em .7em 1em;
  372. float: left;
  373. color: #444;
  374. position: relative;
  375. }
  376. a::before {
  377. border-left-color: #eeeeee;
  378. right: -1.1em;
  379. z-index: 1;
  380. }
  381. }
  382. .link:hover {
  383. text-decoration:underline;
  384. }
  385. .current {
  386. background-color: transparent;
  387. }
  388. #content {
  389. padding-left: 15px;
  390. padding-right: 15px;
  391. min-height: 500px;
  392. }
  393. /*Menu de niveau 2*/
  394. #menu-l2 {
  395. text-align: center;
  396. border-top: 1px solid #e5e5e5;
  397. border-bottom: 1px solid #e5e5e5;
  398. width:auto;
  399. margin-bottom: 10px;
  400. li {
  401. display: inline;
  402. line-height:30px;
  403. }
  404. a {
  405. color: black;
  406. margin: 0 5px;
  407. transition: background-color 150ms linear, color 150ms linear, border 150ms linear;
  408. font-size : 14px;
  409. }
  410. .active {
  411. padding-bottom: 3px;
  412. border-bottom: 5px solid;
  413. border-radius : 0;
  414. color: #000;
  415. color: black;
  416. margin: 0 5px;
  417. font-size : 14px;
  418. }
  419. @Colleges:gray;
  420. @Identites:#B6DDE8;
  421. @Actions:#FFC000;
  422. .menu-color-Colleges {
  423. .menu-color(@Colleges)
  424. }
  425. .menu-color-Identites {
  426. .menu-color(@Identites)
  427. }
  428. .menu-color-ActionsCLAS {
  429. .menu-color(@Actions)
  430. }
  431. .menu-color(@color){
  432. border-bottom-color : @color;
  433. }
  434. }
  435. #title-l1 {
  436. text-align: center;
  437. }
  438. .flex {
  439. display: flex;
  440. flex-direction: row;
  441. }
  442. .facet{order:-1}
  443. /* Version réduite */
  444. @media(max-width:768px){
  445. #titre {
  446. display : none;
  447. }
  448. .nav {
  449. margin-bottom: 5px;
  450. }
  451. }
  452. .result {
  453. flex:1;
  454. bottom:42px;
  455. }
  456. /* Version normale */
  457. @media(min-width:768px) {
  458. #titre {
  459. display : normal;
  460. }
  461. #sidebar-wrapper:hover {
  462. width: 200px;
  463. }
  464. .nav {
  465. margin-bottom: 1px;
  466. }
  467. }
  468. .panel{
  469. border-radius:0;
  470. }
  471. .facet, .filet-right{
  472. background-color : #eee;
  473. padding-top : 8px;
  474. }
  475. .a-facet, .pagination a{
  476. color:#111
  477. }
  478. .div-resultat{
  479. clear:both
  480. }
  481. .margin-left-10{
  482. margin-left:10px
  483. }
  484. .recherche-input{
  485. margin : 0;
  486. }
  487. .input-group{
  488. padding : 0px 10px;
  489. }