/* | |||||
* Welcome to your app's main JavaScript file! | |||||
* | |||||
* We recommend including the built version of this JavaScript file | |||||
* (and its CSS file) in your base layout (base.html.twig). | |||||
*/ | |||||
// any CSS you import will output into a single css file (app.css in this case) | |||||
import './styles/app.css'; | |||||
// start the Stimulus application | |||||
import './bootstrap'; |
#content-page { | #content-page { | ||||
margin-top: 150px; | |||||
margin-top: $headerheight; | |||||
} | } | ||||
img { | img { |
height: 100%; | height: 100%; | ||||
.row-toggle { | .row-toggle { | ||||
height: 16%; | |||||
height: 12%; | |||||
.toggle { | .toggle { | ||||
position: absolute; | position: absolute; | ||||
right: 50px; | |||||
top: 50px; | |||||
right: 0; | |||||
top: 2%; | |||||
border: 0; | border: 0; | ||||
background-color: #FFF; | background-color: #FFF; | ||||
z-index: 100; | |||||
} | } | ||||
} | } | ||||
.row-list { | .row-list { | ||||
height: 84%; | |||||
height: 88%; | |||||
nav { | nav { | ||||
ul { | ul { | ||||
width: 100%; | width: 100%; | ||||
padding-left: 20%; | padding-left: 20%; | ||||
padding-right: 15%; | padding-right: 15%; | ||||
margin-bottom: 8%; | |||||
margin-bottom: 6%; | |||||
display: inline-block; | display: inline-block; | ||||
a { | a { | ||||
.menu-fixed { | .menu-fixed { | ||||
background-color: #FFF; | background-color: #FFF; | ||||
height: 150px; | |||||
height: $headerheight; | |||||
z-index: 2; | z-index: 2; | ||||
border-bottom: 1px solid lightgrey; | border-bottom: 1px solid lightgrey; | ||||
width: 50%; | width: 50%; | ||||
img { | img { | ||||
max-height: 123px; | |||||
max-height: 85px; | |||||
} | } | ||||
} | } | ||||
.space-collab { | .space-collab { | ||||
color: $yellow; | color: $yellow; | ||||
font-size: 25px; | |||||
font-size: 22px; | |||||
font-family: franklinregular; | font-family: franklinregular; | ||||
img { | img { |
$blue: #17428c; | $blue: #17428c; | ||||
$green: #568b6f; | $green: #568b6f; | ||||
$headerheight: 122px; | |||||
@font-face { | @font-face { | ||||
font-family: 'dinregular'; | font-family: 'dinregular'; | ||||
src: url($dir-fonts + 'din_regular-webfont.eot'); | src: url($dir-fonts + 'din_regular-webfont.eot'); |
import { startStimulusApp } from '@symfony/stimulus-bridge'; | |||||
// Registers Stimulus controllers from controllers.json and in the controllers/ directory | |||||
export const app = startStimulusApp(require.context( | |||||
'@symfony/stimulus-bridge/lazy-controller-loader!./controllers', | |||||
true, | |||||
/\.(j|t)sx?$/ | |||||
)); | |||||
// register any custom, 3rd party controllers here | |||||
// app.register('some_controller_name', SomeImportedController); |
import { Controller } from 'stimulus'; | |||||
/* | |||||
* This is an example Stimulus controller! | |||||
* | |||||
* Any element with a data-controller="hello" attribute will cause | |||||
* this controller to be executed. The name "hello" comes from the filename: | |||||
* hello_controller.js -> "hello" | |||||
* | |||||
* Delete this file or adapt it for your use! | |||||
*/ | |||||
export default class extends Controller { | |||||
connect() { | |||||
this.element.textContent = 'Hello Stimulus! Edit me in assets/controllers/hello_controller.js'; | |||||
} | |||||
} |
body { | |||||
background-color: lightgray; | |||||
} |
"/build/vendors-node_modules_core-js_modules_es_array_find_js-node_modules_core-js_modules_es_date_to-6fef76.ac898f36.js", | "/build/vendors-node_modules_core-js_modules_es_array_find_js-node_modules_core-js_modules_es_date_to-6fef76.ac898f36.js", | ||||
"/build/vendors-node_modules_popper_js_dist_esm_popper_js.e5c0d110.js", | "/build/vendors-node_modules_popper_js_dist_esm_popper_js.e5c0d110.js", | ||||
"/build/vendors-node_modules_admin-lte_dist_js_adminlte_min_js-node_modules_bootstrap-autocomplete_di-ff08f2.d1f0f608.js", | "/build/vendors-node_modules_admin-lte_dist_js_adminlte_min_js-node_modules_bootstrap-autocomplete_di-ff08f2.d1f0f608.js", | ||||
"/build/adminlte-plugins.53e5cc84.js" | |||||
"/build/adminlte-plugins.c7086074.js" | |||||
], | ], | ||||
"css": [ | "css": [ | ||||
"/build/vendors-node_modules_admin-lte_dist_js_adminlte_min_js-node_modules_bootstrap-autocomplete_di-ff08f2.fa890b12.css" | "/build/vendors-node_modules_admin-lte_dist_js_adminlte_min_js-node_modules_bootstrap-autocomplete_di-ff08f2.fa890b12.css" | ||||
"/build/app-frontend.48212924.js" | "/build/app-frontend.48212924.js" | ||||
], | ], | ||||
"css": [ | "css": [ | ||||
"/build/app-frontend.aeb3dd19.css" | |||||
"/build/app-frontend.35f52dd6.css" | |||||
] | ] | ||||
} | } | ||||
} | } |
{ | { | ||||
"build/adminlte-plugins.js": "/build/adminlte-plugins.53e5cc84.js", | |||||
"build/adminlte-plugins.js": "/build/adminlte-plugins.c7086074.js", | |||||
"build/adminlte-index.css": "/build/adminlte-index.e4548695.css", | "build/adminlte-index.css": "/build/adminlte-index.e4548695.css", | ||||
"build/adminlte-index.js": "/build/adminlte-index.54281e4b.js", | "build/adminlte-index.js": "/build/adminlte-index.54281e4b.js", | ||||
"build/adminlte-form.css": "/build/adminlte-form.59862983.css", | "build/adminlte-form.css": "/build/adminlte-form.59862983.css", | ||||
"build/sov-ticket.js": "/build/sov-ticket.df76c7a0.js", | "build/sov-ticket.js": "/build/sov-ticket.df76c7a0.js", | ||||
"build/app-backend.css": "/build/app-backend.3d882954.css", | "build/app-backend.css": "/build/app-backend.3d882954.css", | ||||
"build/app-backend.js": "/build/app-backend.e0a6620d.js", | "build/app-backend.js": "/build/app-backend.e0a6620d.js", | ||||
"build/app-frontend.css": "/build/app-frontend.aeb3dd19.css", | |||||
"build/app-frontend.css": "/build/app-frontend.35f52dd6.css", | |||||
"build/app-frontend.js": "/build/app-frontend.48212924.js", | "build/app-frontend.js": "/build/app-frontend.48212924.js", | ||||
"build/runtime.js": "/build/runtime.3095b250.js", | "build/runtime.js": "/build/runtime.3095b250.js", | ||||
"build/vendors-node_modules_core-js_internals_export_js.2e873f33.js": "/build/vendors-node_modules_core-js_internals_export_js.2e873f33.js", | "build/vendors-node_modules_core-js_internals_export_js.2e873f33.js": "/build/vendors-node_modules_core-js_internals_export_js.2e873f33.js", |
use Doctrine\Common\Collections\ArrayCollection; | use Doctrine\Common\Collections\ArrayCollection; | ||||
use Doctrine\Common\Collections\Collection; | use Doctrine\Common\Collections\Collection; | ||||
use Doctrine\ORM\Mapping as ORM; | use Doctrine\ORM\Mapping as ORM; | ||||
use Lc\SovBundle\Model\User\User as SovUserModel; | |||||
use Lc\SovBundle\Model\User\GroupUserModel as SovUserModel; | |||||
use Lc\SovBundle\Model\User\UserInterface; | use Lc\SovBundle\Model\User\UserInterface; | ||||
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; | use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity; | ||||
<div class="col-12"> | <div class="col-12"> | ||||
<h1>Imaginons ensemble le futur du Nord Franche-Comté</h1> | <h1>Imaginons ensemble le futur du Nord Franche-Comté</h1> | ||||
<h2>Participez à une démarche inédite de concertation citoyenne.</h2> | <h2>Participez à une démarche inédite de concertation citoyenne.</h2> | ||||
<a class="discover" href="" title="Découvrir">DÉCOUVRIR</a> | |||||
<a class="discover" href="{{ path('app_contribuate') }}" title="Découvrir">DÉCOUVRIR</a> | |||||
<img class="perso-aac" src="{{ 'assets/img/Personnages.png' }}" alt="Personnages-AAC"> | <img class="perso-aac" src="{{ 'assets/img/Personnages.png' }}" alt="Personnages-AAC"> | ||||
<img class="startup" src="{{ 'assets/img/Picto-StartUP.png' }}" alt="StartUP"> | <img class="startup" src="{{ 'assets/img/Picto-StartUP.png' }}" alt="StartUP"> | ||||
</div> | </div> |