polish integration graphique: modals

This commit is contained in:
Florian Schmitt 2019-07-19 22:35:33 +03:00
parent 3b3914aed6
commit b7ae41fc45
5 changed files with 426 additions and 156 deletions

View file

@ -94,7 +94,6 @@ body {
color: #333; color: #333;
padding: 0; padding: 0;
margin: 0; margin: 0;
user-select: none; user-select: none;
-o-user-select: none; -o-user-select: none;
-moz-user-select: none; -moz-user-select: none;
@ -136,13 +135,13 @@ a:hover, a:focus, a:active {
} }
.main-header { .main-header {
margin:2em 0; margin:2em 0 0 0;
display: flex; display: flex;
align-content: space-around; align-content: space-around;
align-items: center; align-items: center;
} }
.logo { .logo {
width: 400px; width: 350px;
} }
.base-line { .base-line {
font-family: 'geomanistitalic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; font-family: 'geomanistitalic', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
@ -155,6 +154,58 @@ a:hover, a:focus, a:active {
max-width:1140px; max-width:1140px;
margin: 0 auto; margin: 0 auto;
} }
.container-fluid {
margin: 1em;
}
.board-container {
margin: 1em auto 0 auto;
width:1140px;
}
.actions {
float:right;
margin-top: 1em;
}
.actions a {
font-weight: bold;
text-transform: uppercase;
font-family: 'geomanistregular', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
margin-left:1em;
transition: color ease-out .2s;
}
.actions a:hover {
text-decoration: none;
color:#e33d8a;
}
#smallify .fa-search-plus ~ .big {
display:inline-block;
}
#smallify .fa-search-plus ~ .big ~ .small {
display:none;
}
#smallify .fa-search-minus ~ .big {
display:none;
}
#smallify .fa-search-minus ~ .big ~ .small {
display:inline-block;
}
#full-page .fa-expand ~ .full-screen {
display:inline-block;
}
#full-page .fa-expand ~ .full-screen ~ .contain-screen {
display:none;
}
#full-page .fa-compress ~ .full-screen {
display:none;
}
#full-page .fa-compress ~ .full-screen ~ .contain-screen {
display:inline-block;
}
.clearfix {
clear:both;
}
#board { #board {
position: relative; position: relative;
background-color: #EEE; background-color: #EEE;
@ -176,6 +227,7 @@ a:hover, a:focus, a:active {
display: block; display: block;
height: 466px; height: 466px;
box-shadow: 1px 1px 1px #aaa; box-shadow: 1px 1px 1px #aaa;
margin: 0 auto;
} }
#board-doodles { #board-doodles {
@ -187,13 +239,6 @@ a:hover, a:focus, a:active {
background-image: url('/images/scribbles2.png'); background-image: url('/images/scribbles2.png');
} }
.hover .content {
xborder: solid rgba(92, 157, 181, 0.5) 3px;
}
.card-icon { .card-icon {
display: none; display: none;
position: absolute; position: absolute;
@ -392,13 +437,10 @@ h2 {
} }
.names input:hover { .names input:hover {
xpadding: 2px 2px 2px 2px;
xborder: solid 1px #E5E5E5;
outline: 0; outline: 0;
width: 100px; width: 100px;
background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF)); background: -webkit-gradient(linear, left top, left 25, from(#FFFFFF), color-stop(4%, #EEEEEE), to(#FFFFFF));
background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px); background: -moz-linear-gradient(top, #FFFFFF, #EEEEEE 1px, #FFFFFF 25px);
xopacity: .5;
background: none; background: none;
box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px; box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
border-radius: 10px; border-radius: 10px;
@ -649,21 +691,6 @@ input.text {
border-bottom: dashed 3px #64d29b; border-bottom: dashed 3px #64d29b;
} }
input:hover {
x-webkit-box-shadow: 0px 0px 4px #000;
xbackground: none;
}
#go {
/* padding: 0 10px 5px 0; */
/* border-radius: 10px; */
/* margin-bottom: 10px; */
/* font-size: 40px; */
/* xborder: solid 1px; */
}
#go:hover { #go:hover {
box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, .2); box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, .2);
text-decoration: none; text-decoration: none;
@ -695,9 +722,11 @@ input:hover {
.notice-bar { .notice-bar {
padding: 0; padding: 0;
margin: 0; margin: 1em 0 0 0;
text-align: center; text-align: center;
color:#e33d8a; color:#e33d8a;
text-transform:uppercase;
font-weight: bold;
} }
.notice-bar a { .notice-bar a {
@ -747,15 +776,7 @@ img {
bottom: 4px; bottom: 4px;
} }
.filler { .filler {
xwidth: 100%;
xbackground-color: rgba(255, 0, 0, 0.1);
xheight: 100%;
right: 0; right: 0;
bottom: 0; bottom: 0;
position: absolute; position: absolute;
@ -923,5 +944,228 @@ img {
} }
.credits { .credits {
float:right; text-align: center;
} }
/**
* modal.css
* Author: Pedro Laxe
* Version: 1.0.6
* License: GPLv2
**/
.modal {
left: 50%;
margin: -250px 0 0 -32%;
opacity: 0;
position: absolute;
top: -50%;
visibility: hidden;
width: 65%;
box-shadow: 0 3px 3px rgba(0,0,0,.25);
box-sizing: border-box;
transition: all .4s ease-in-out;
-moz-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
}
.modal:target {
opacity: 1;
top: 50%;
visibility: visible;
}
.modal .header, .modal .footer {
border-bottom: 1px solid #e7e7e7;
border-radius: 5px 5px 0 0;
}
.modal .footer {
border: none;
border-top: 1px solid #e7e7e7;
border-radius: 0 0 5px 5px;
}
.modal h2 {
margin: 0;
color: #333333;
}
.modal .btn {
float: right;
}
.modal .copy, .modal .header, .modal .footer {
padding: 5px;
color: #333333;
}
.modal-content {
background: #f7f7f7;
position: relative;
z-index: 20;
border-radius: 5px;
color: #333333;
}
.modal .copy {
background: #fff;
min-height:200px;
}
.modal .overlay {
background-color: #000;
background: rgba(0,0,0,.8);
height: 100%;
left: 0;
position: fixed;
top: 0;
width: 100%;
z-index: 10;
}
.copy ul li a {
color: #333333;
text-decoration: none;
}
/* Responsive Options */
@media screen and (min-width: 768px) {
.modal{
width:600px;
margin:-250px 0px 0px -18.2%;
top: -50%;
}
}
.modalcss-button {
/* Structure */
display: inline-block;
zoom: 1;
line-height: normal;
white-space: nowrap;
vertical-align: middle;
text-align: center;
cursor: pointer;
-webkit-user-drag: none;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
/* Firefox: Get rid of the inner focus border */
.modalcss-button::-moz-focus-inner {
padding: 0;
border: 0;
}
.modalcss-button {
font-family: inherit;
font-size: 100%;
padding: 0.5em 1em;
color: #444; /* rgba not supported (IE 8) */
color: rgba(0, 0, 0, 0.80); /* rgba supported */
border: 1px solid #999; /*IE 6/7/8*/
border: none rgba(0, 0, 0, 0); /*IE9 + everything else*/
background-color: #E6E6E6;
text-decoration: none;
border-radius: 2px;
}
.modalcss-button-hover,
.modalcss-button:hover,
.modalcss-button:focus {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#1a000000',GradientType=0);
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(transparent), color-stop(40%, rgba(0,0,0, 0.05)), to(rgba(0,0,0, 0.10)));
background-image: -webkit-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
background-image: -moz-linear-gradient(top, rgba(0,0,0, 0.05) 0%, rgba(0,0,0, 0.10));
background-image: -o-linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
background-image: linear-gradient(transparent, rgba(0,0,0, 0.05) 40%, rgba(0,0,0, 0.10));
}
.modalcss-button:focus {
outline: 0;
}
.modalcss-button-active,
.modalcss-button:active {
box-shadow: 0 0 0 1px rgba(0,0,0, 0.15) inset, 0 0 6px rgba(0,0,0, 0.20) inset;
border-color: #000\9;
}
.modalcss-button[disabled],
.modalcss-button-disabled,
.modalcss-button-disabled:hover,
.modalcss-button-disabled:focus,
.modalcss-button-disabled:active {
border: none;
background-image: none;
filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
filter: alpha(opacity=40);
-khtml-opacity: 0.40;
-moz-opacity: 0.40;
opacity: 0.40;
cursor: not-allowed;
box-shadow: none;
}
.modalcss-button-hidden {
display: none;
}
/* Firefox: Get rid of the inner focus border */
.modalcss-button::-moz-focus-inner{
padding: 0;
border: 0;
}
.modalcss-button-primary,
.modalcss-button-selected,
a.modalcss-button-primary,
a.modalcss-button-selected {
background-color: rgb(0, 120, 231);
color: #fff;
}
.button-success,
.button-error,
.button-warning,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-success {
background: rgb(28, 184, 65); /* this is a green */
}
.button-error {
background: rgb(202, 60, 60); /* this is a maroon */
}
.button-warning {
background: rgb(223, 117, 20); /* this is an orange */
}
.button-secondary {
background: rgb(66, 184, 221); /* this is a light blue */
}
/* Responsive Video */
.video {
position: relative;
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
}
.video iframe,
.video object,
.video embed {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
/* Close Button */
.box3 {
width: 25px;
right: 0px;
position: absolute;
margin: 5px;
}
svg {
display: block;
}
.close-x {
stroke: black;
fill: transparent;
stroke-linecap: round;
stroke-width: 5;
}

View file

@ -1,3 +1,13 @@
function toggleFullScreen() {
if (!document.fullscreenElement) {
document.documentElement.requestFullscreen();
} else {
if (document.exitFullscreen) {
document.exitFullscreen();
}
}
}
var cards = {}; var cards = {};
var totalcolumns = 0; var totalcolumns = 0;
var columns = []; var columns = [];
@ -1080,21 +1090,6 @@ $(document).ready(function(){
}, 500); }, 500);
// Tabs
$('.board-outline')
.before(
'<ul class="nav nav-tabs">'+
'<li role="presentation" class="active"><a href="#scrumblr" aria-controls="scrumblr" role="tab" data-toggle="tab"><i class="fa fa-fw fa-lg fa-object-group" aria-hidden="true"></i> Tableau</a></li>'+
'<li role="presentation" class="pull-right"><a href="javascript:void(0);" aria-hidden="true" id="full-page" title="Plein écran"><i class="fa fa-fw fa-lg fa-expand"></i><span class="sr-only">Plein écran</span></a></li>'+
'<li role="presentation" class="pull-right"><a href="#revisions" aria-controls="revisions" role="tab" data-toggle="tab" title="'+$('.revisions h3').text()+'"><i class="fa fa-fw fa-lg fa-history" aria-hidden="true"></i><span class="sr-only">'+$('.revisions h3').text()+'</span></a></li>'+
'<li role="presentation" class="pull-right"><a href="#share" aria-controls="share" role="tab" data-toggle="tab" title="'+$('.share h3').text()+'"><i class="fa fa-fw fa-lg fa-share-alt" aria-hidden="true"></i><span class="sr-only">'+$('.share h3').text()+'</span></a></li>'+
'<li role="presentation" class="pull-right"><a href="#export-import" aria-controls="export-import" role="tab" data-toggle="tab" title="'+$('.export h3').text()+'/'+$('.import h3').text()+'"><i class="fa fa-fw fa-lg fa-exchange" aria-hidden="true"></i><span class="sr-only">'+$('.export h3').text()+'/'+$('.import h3').text()+'</span></a></li>'+
'<li role="presentation" class="pull-right"><a href="#about" aria-controls="about" role="tab" data-toggle="tab" title="'+$('#tuto-faq h2').text()+'"><i class="fa fa-fw fa-lg fa-question-circle" aria-hidden="true"></i><span class="sr-only">'+$('#tuto-faq h2').text()+'</span></a></li>'+
'</ul>'
)
.wrap(
'<div class="tab-content" style="margin:20px 0"><div role="tabpanel" class="tab-pane active" id="scrumblr"></div></div>'
)
$('.names').css({'margin':'auto','width':'auto'}).addClass('pull-right'); $('.names').css({'margin':'auto','width':'auto'}).addClass('pull-right');
@ -1114,32 +1109,28 @@ $(document).ready(function(){
// Style // Style
$('#create-card').addClass('vert fa-3x').css('opacity','1'); $('#create-card').addClass('vert fa-3x').css('opacity','1');
$('#smallify').removeClass('fa-expand').addClass('fa-search-minus').on('click',function(){ $('#smallify').on('click',function(){
if (currentTheme == "bigcards") { if (currentTheme == "bigcards") {
$(this).removeClass('fa-search-plus').addClass('fa-search-minus'); $(this).children('i').removeClass('fa-search-plus').addClass('fa-search-minus');
} else { } else {
$(this).removeClass('fa-search-minus').addClass('fa-search-plus'); $(this).children('i').removeClass('fa-search-minus').addClass('fa-search-plus');
} }
}) })
$('#full-page').on('click', function(){ $('#full-page').on('click', function(){
if ($('.container.ombre').length) { if ($(this).children('i').hasClass('fa-expand')) {
$(this).children('i').removeClass('fa-expand').addClass('fa-compress'); $(this).children('i').removeClass('fa-expand').addClass('fa-compress');
$('.container.ombre').removeClass('container').addClass('container-fluid'); $('#colibris-menu, .main-header, .credits').hide();
} else { } else {
$(this).children('i').removeClass('fa-compress').addClass('fa-expand'); $(this).children('i').removeClass('fa-compress').addClass('fa-expand');
$('.container-fluid.ombre').removeClass('container-fluid').addClass('container'); $('#colibris-menu, .main-header, .credits').show();
} }
toggleFullScreen();
}) })
$('main hr').hide();
/** Mode iframe **/ /** Mode iframe **/
if(top.location!=self.document.location) { if(top.location!=self.document.location) {
$('#colibris-menu, .main-header, .credits').hide();
$('#full-page').hide().trigger('click');
$('main hr, header').hide();
} }
// put URL in share input // put URL in share input
@ -1190,4 +1181,11 @@ getJSON(url,
styleElement.innerHTML = data.style; styleElement.innerHTML = data.style;
document.getElementById('colibris-menu').appendChild(styleElement); document.getElementById('colibris-menu').appendChild(styleElement);
} }
}); });
//Close with Escape Button
window.onkeydown = function( event ) {
if ( event.keyCode === 27 ) {
document.getElementById('close').click();
}
};

View file

@ -10,7 +10,7 @@ body
div.container div.container
header.main-header header.main-header
a(href="/", title="Retour à la page d'accueil") a(href="/", title="Retour à la page d'accueil")
img.logo(src="/images/logo-Post-it.svg", alt="logo Post-it") img.logo(src="/images/logo-Post-it.svg", alt="logo Post-it")
div.base-line Organiser ses idées collectivement div.base-line Organiser ses idées collectivement
main main
div.board-outline div.board-outline
@ -31,5 +31,5 @@ body
//display # of active users here //display # of active users here
div.active-connections= "Connexions en cours : " + connected div.active-connections= "Connexions en cours : " + connected
div.credits Logiciel libre basé sur <a href="https://framagit.org/framasoft/framemo">Framemo</a> et <a href="https://github.com/aliasaria/scrumblr">Scrumblr</a> div.credits Logiciel libre basé sur <a href="https://framagit.org/framasoft/framemo">Framemo</a> et <a href="https://github.com/aliasaria/scrumblr">Scrumblr</a> - <a href="https://framagit.org/colibris/framemo">Code source</a>
script(type="text/javascript", src="/home.js") script(type="text/javascript", src="/home.js")

View file

@ -1,90 +1,116 @@
extends layout extends layout
block body block body
- if (locals.demo) div.container
div.notice-bar Ceci est un tableau de démonstration. Ny mettez rien dimportant - if (locals.demo)
div.pull-left.notice-bar Tableau de démonstration. Ny mettez rien dimportant !
div.actions
a#share-link(href="#share", aria-controls="share", title="Partager le tableau")
i.fa.fa-fw.fa-lg.fa-share-alt
span Partager
a#revisions-link(href="#revisions", aria-controls="revisions", title="Révisions")
i.fa.fa-fw.fa-lg.fa-exchange
span Révisions
a#smallify(href="javascript:void(0);", title="Réduire la taille des post-it")
i.fa.fa-fw.fa-lg.fa-search-plus
span.big Grands Post-it
span.small Petits Post-it
a#full-page(href="javascript:void(0);", aria-hidden="true", title="Plein écran")
i.fa.fa-fw.fa-lg.fa-expand
span.full-screen Plein écran
span.contain-screen Réduire
div.clearfix
div.board-container
div.board-outline
div#board
div#board-doodles
table#board-table.board-table
tr
td#icon-col(width='1%')
image#add-col.col-icon(width='20', height='20', src='images/icons/iconic/raster/black/plus_alt_32x32.png' alt='Ajouter une colonne')
image#delete-col.col-icon(width='20', height='20', src='images/icons/iconic/raster/black/minus_alt_32x32.png' alt='Supprimer une colonne')
div.board-outline div.container
div#board div.buttons
div#board-doodles i#create-card.fa.fa-plus-circle.fa-2x.bottom-icon(title='Ajouter une note')
span Ajouter un Post-it
table#board-table.board-table
tr
td#icon-col(width='1%')
image#add-col.col-icon(width='20', height='20', src='images/icons/iconic/raster/black/plus_alt_32x32.png' alt='Ajouter une colonne')
image#delete-col.col-icon(width='20', height='20', src='images/icons/iconic/raster/black/minus_alt_32x32.png' alt='Supprimer une colonne')
div.buttons
i#create-card.fa.fa-plus-circle.fa-2x.bottom-icon(title='Ajouter une note')
i#smallify.fa.fa-expand.fa-2x.bottom-icon(title='Réduire la taille des notes')
div.form-group
label.control-label(for='choose-card-color') Choisir la couleur de la nouvelle note&nbsp;
select#choose-card-color.form-control
option(value='random') Couleur au hasard
option(value='yellow') Jaune
option(value='green') Vert
option(value='blue') Bleu
option(value='white') Blanc
div.stickers
div.sticker#sticker-red(title='Ajouter une pastille rouge')
div.sticker#sticker-blue(title='Ajouter une pastille bleue')
div.sticker#sticker-yellow(title='Ajouter une pastille jaune')
div.sticker#sticker-green(title='Ajouter une pastille verte')
br
div.sticker#sticker-pink(title='Ajouter une pastille rose')
div.sticker#sticker-lightblue(title='Ajouter une pastille bleu clair')
div.sticker#sticker-orange(title='Ajouter une pastille orange')
div.sticker#sticker-purple(title='Ajouter une pastille violette')
//div.sticker#sticker-silverstar
//div#addsticker
br
div.sticker#sticker-gold(title='Ajouter une étoile dorée')
// image(src="/images/stickers/sticker-gold.png")
div.sticker#sticker-bluestar(title='Ajouter une étoile bleue')
// image(src="/images/stickers/sticker-bluestar.png")
div.sticker#sticker-silverstar(title='Ajouter une étoile argentée')
// image(src="/images/stickers/sticker-silverstar.png")
div.sticker#sticker-redstar(title='Ajouter une étoile rouge')
// image(src="/images/stickers/sticker-redstar.png")
br
div.sticker#nosticker(title='Supprimer les pastilles ou les étoiles d\'une note')
div.names
p connectés :
//image#user-icon(src="/images/icons/cc/black/png/user_icon&16.png")
input#yourname-input
span.you-text (vous)
ul#names-ul
div.share
h3 Partager le tableau
div.form-inline
div.input-group
input#taburl.form-control(disabled='disabled')
div.input-group-addon
a#copyurl(href='#', title='Copier l\'adresse du tableau dans votre presse-papier')
i.fa.fa-clipboard
div.export
h3 Exporter le tableau
button#export-txt.btn.btn-primary Format texte
button#export-csv.btn.btn-primary Format CSV
button#export-json.btn.btn-primary Format JSON (pour import dans Post-it)
div.import
h3 Importer un tableau
div.form-inline
div.form-group div.form-group
label(for="import-input") fichier JSON à importer label.control-label(for='choose-card-color') Couleur
input(type="file")#import-input.form-control select#choose-card-color.form-control
button#import-file.btn.btn-primary Importer option(value='random') Au hasard
option(value='yellow') Jaune
option(value='green') Vert
option(value='blue') Bleu
option(value='white') Blanc
div.revisions
h3 Révisions div.stickers
button#create-revision.btn.btn-primary Créer une révision div.sticker#sticker-red(title='Ajouter une pastille rouge')
div div.sticker#sticker-blue(title='Ajouter une pastille bleue')
ul#revisions-list div.sticker#sticker-yellow(title='Ajouter une pastille jaune')
div.sticker#sticker-green(title='Ajouter une pastille verte')
br
div.sticker#sticker-pink(title='Ajouter une pastille rose')
div.sticker#sticker-lightblue(title='Ajouter une pastille bleu clair')
div.sticker#sticker-orange(title='Ajouter une pastille orange')
div.sticker#sticker-purple(title='Ajouter une pastille violette')
br
div.sticker#sticker-gold(title='Ajouter une étoile dorée')
div.sticker#sticker-bluestar(title='Ajouter une étoile bleue')
div.sticker#sticker-silverstar(title='Ajouter une étoile argentée')
div.sticker#sticker-redstar(title='Ajouter une étoile rouge')
br
div.sticker#nosticker(title='Supprimer les pastilles ou les étoiles d\'une note')
div.names
p <i class="fa fa-fw fa-lg fa-users"></i> connectés :
input#yourname-input
span.you-text (vous)
ul#names-ul
div#share.modal
div.modal-content
div.header
a#close(href="#")
div.box.box3
<svg viewbox="0 0 40 40"><path class="close-x" d="M 10,10 L 30,30 M 30,10 L 10,30" /></svg>
h2 Partager le tableau
div.copy
div.form-inline
div.input-group
input#taburl.form-control(disabled='disabled')
div.input-group-addon
a#copyurl(href='#', title='Copier l\'adresse du tableau dans votre presse-papier')
i.fa.fa-clipboard
a(href="#")
div.overlay
div#revisions.modal
div.modal-content
div.header
a#close(href="#")
div.box.box3
<svg viewbox="0 0 40 40"><path class="close-x" d="M 10,10 L 30,30 M 30,10 L 10,30" /></svg>
h2 Révisions - Import/Export
div.copy
div.revisions
h3 Révisions
button#create-revision.btn.btn-primary Créer une révision
div
ul#revisions-list
div.export
h3 Exporter le tableau
button#export-txt.btn.btn-primary Format texte
button#export-csv.btn.btn-primary Format CSV
button#export-json.btn.btn-primary Format JSON (pour import dans Post-it)
div.import
h3 Importer un tableau
div.form-inline
div.form-group
label(for="import-input") Fichier JSON à importer
input(type="file")#import-input.form-control
button#import-file.btn.btn-primary Importer
a(href="#")
div.overlay

View file

@ -35,6 +35,8 @@ html(lang="fr")
a(href="/", title="Retour à la page d'accueil") a(href="/", title="Retour à la page d'accueil")
img.logo(src="/images/logo-Post-it.svg", alt="logo Post-it") img.logo(src="/images/logo-Post-it.svg", alt="logo Post-it")
div.base-line Organiser ses idées collectivement div.base-line Organiser ses idées collectivement
main main
block body block body
div.credits Logiciel libre basé sur <a href="https://framagit.org/framasoft/framemo">Framemo</a> et <a href="https://github.com/aliasaria/scrumblr">Scrumblr</a> div.clearfix
div.container
div.credits Logiciel libre basé sur <a href="https://framagit.org/framasoft/framemo">Framemo</a> et <a href="https://github.com/aliasaria/scrumblr">Scrumblr</a> - <a href="https://framagit.org/colibris/framemo">Code source</a>