12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- @import "bootstrap3/less/bootstrap.less";
- @import "bootstrap3/less/variables.less";
- @violet: #6f5499;
- @brand-primary: lighten(@violet,5%);
- nav.projets {
- width: 100%;
- height: 100%;
- background: @violet;
- padding: 2em 0 0 0;
- .heading, a {
- display: block;
- width: 100%;
- min-height: 2em;
- line-height: 2em;
- padding-left: 2em;
- color: #fff;
- &.selectionné, &.selected {
- background: @violet + #111;
- }
- }
- .heading {
- color: #ccc;
- }
- .vers-index {
- &:before {
- content: "◂ ";
- margin-left: -0.8em;
- }
- }
- }
- nav.dossiers {
- a {
- display: block;
- width: 100%;
- min-height: 2em;
- line-height: 2em;
- padding-left: 2em;
- }
- }
- .bouton {
- .btn-primary;
- .btn-lg;
- }
- .bouton.presse {
- margin: 0.5em auto;
- }
- .app.titre {
- padding: 1em 20px;
- }
- .métadonnées, .éditer, .ressources, .actions {
- padding: 1em 20px;
- }
- .ressources {
- a {
- &.pad, &.pdf, &.docx, &.html5, &.txt {
- display: inline-block;
- padding: 0.3em;
- background: lighten(@violet,20%);
- border-radius: 4px;
- margin: 0 0 0.3em 0.5em;
- color: #fff;
- font-weight: 600;
- }
- }
- }
- #index {
- }
- @media (min-width: @screen-md) {
- body {
- margin-left: 350px;
- }
- nav.projets {
- position: absolute;
- left: 0;
- top: 0;
- width: 333px;
- }
- }
|