50 views
--- tags: template --- # Modèle d'analyse SWOT > Description (facultative) du projet analysé ## Objectif - objectif 1 - objectif 2 <div id="swot"> <section> ### 💪  Forces On note ici les forces du projet - contenu - contenu </section> <section> ### 🤦  Faiblesses On note ici les faiblesses du projet - contenu - contenu </section> <section> ### 🌱  Opportunités On note ici ce qui peut être une opportunité pour le projet - contenu - contenu </section> <section> ### ⚠️  Menaces On note ici ce qui peut être une menace pour le projet - contenu - contenu </section> </div> <style> #swot { display: flex; flex-wrap: wrap; justify-content: center; margin-top: 3em; } #doc h1 { text-align: center; } section { width: 350px; border-left: 1px solid transparent; border-top: 1px solid transparent; height: 300px; } section:nth-of-type(1) { background-color: rgba(0,100,0,0.4); border-radius: 10px 0 0 0; } section:nth-of-type(2) { background-color: rgba(100,0,0,0.4); border-radius: 0 10px 0 0; } section:nth-of-type(3) { background-color: rgba(0,100,0,0.2); border-radius: 0 0 0 10px; } section:nth-of-type(4) { background-color: rgba(100,0,0,0.2); border-radius: 0 0 10px 0; } section:nth-of-type(1):before, section:nth-of-type(3):before { position: absolute; transform: rotate(270deg); margin-left: -80px!important; margin-top: 120px; color: #777; } section:nth-of-type(1):before{ content: "internes"; } section:nth-of-type(3):before{ content: "externes"; } section h3 { margin-top: 0!important; } #ui-toc-affix, .ui-infobar { display: none!important; } .row .ui-infobar { display: block!important } </style>