Last commit july 5th

This commit is contained in:
2024-07-05 13:46:23 +02:00
parent dad0d86e8c
commit b0e4dfbb76
24982 changed files with 2621219 additions and 413 deletions

View File

@@ -1,10 +1,13 @@
import './bootstrap.js';
/*
* Welcome to your app's main JavaScript file!
*
* This file will be included onto the page via the importmap() Twig function,
* which should already be in your base.html.twig.
* We recommend including the built version of this JavaScript file
* (and its CSS file) in your base layout (base.html.twig).
*/
import './styles/app.css';
console.log('This log comes from assets/app.js - welcome to AssetMapper! 🎉');
// any CSS you import will output into a single css file (app.css in this case)
import './styles/app.scss';
import 'bootstrap';
import bsCustomFileInput from 'bs-custom-file-input';
bsCustomFileInput.init();

View File

@@ -0,0 +1 @@
$font-family-title: Georgia, Times, 'New Roman', serif;

View File

@@ -1,3 +0,0 @@
body {
background-color: skyblue;
}

62
assets/styles/app.scss Normal file
View File

@@ -0,0 +1,62 @@
@import '~bootstrap/scss/bootstrap';
@import './variables';
body {
display: flex;
flex-direction: column;
height: 100vh;
}
a {
text-decoration: none;
}
main {
flex: 1;
}
.navbar-brand {
font-family: $font-family-title;
font-weight: $font-weight-normal;
font-size: 1.8rem;
}
.navbar-brand, .nav-link {
transition: all .15s;
}
.nav-conference {
display: inline-block;
padding: 5px 10px;
color: #666;
text-transform: uppercase;
font-size: 0.8rem;
}
.lift {
transition: box-shadow .25s ease,transform .25s ease;
&:focus, &:hover {
box-shadow: 0 1rem 2.5rem rgba(22,28,45,.1),0 .5rem 1rem -.75rem rgba(22,28,45,.1)!important;
transform: translate3d(0, -4px, 0);
}
}
.comment-img {
width: 250px;
height: 150px;
img {
max-width: 250px;
max-height: 150px;
}
}
.comment-text {
font-size: 12px;
line-height: 15px;
}
footer {
background: #18171b;
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

22
assets/vendor/installed.php vendored Normal file
View File

@@ -0,0 +1,22 @@
<?php return array (
'@hotwired/stimulus' =>
array (
'version' => '3.2.2',
'dependencies' =>
array (
),
'extraFiles' =>
array (
),
),
'@hotwired/turbo' =>
array (
'version' => '7.3.0',
'dependencies' =>
array (
),
'extraFiles' =>
array (
),
),
);