Skip to content

Commit 9c3ecf3

Browse files
committed
add missing files
Signed-off-by: Benjamin Issleib <[email protected]>
1 parent 62fef9e commit 9c3ecf3

File tree

4 files changed

+83
-0
lines changed

4 files changed

+83
-0
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
.scrollbox {
2+
overflow: auto;
3+
position: relative;
4+
height: 55vh;
5+
6+
background:
7+
/* Shadow covers */
8+
linear-gradient(white 30%, rgba(255,255,255,0)),
9+
linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
10+
11+
/* Shadows */
12+
radial-gradient(50% 0, farthest-side, rgba(0,0,0,.2), rgba(0,0,0,0)),
13+
radial-gradient(50% 100%,farthest-side, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;
14+
background:
15+
/* Shadow covers */
16+
linear-gradient(white 30%, rgba(255,255,255,0)),
17+
linear-gradient(rgba(255,255,255,0), white 70%) 0 100%,
18+
19+
/* Shadows */
20+
radial-gradient(farthest-side at 50% 0, rgba(0,0,0,.2), rgba(0,0,0,0)),
21+
radial-gradient(farthest-side at 50% 100%, rgba(0,0,0,.2), rgba(0,0,0,0)) 0 100%;
22+
background-repeat: no-repeat;
23+
background-color: white;
24+
background-size: 100% 40px, 100% 40px, 100% 14px, 100% 14px;
25+
26+
/* Opera doesn't support this in the shorthand */
27+
background-attachment: local, local, scroll, scroll;
28+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
<div class="card">
2+
<div class="card-image">
3+
<figure class="image is-4by3">
4+
<img src="https://bulma.io/images/placeholders/1280x960.png" alt="Placeholder image">
5+
</figure>
6+
</div>
7+
<div class="card-content">
8+
<div class="media">
9+
<div class="media-left">
10+
<figure class="image is-48x48">
11+
<img src="https://bulma.io/images/placeholders/96x96.png" alt="Placeholder image">
12+
</figure>
13+
</div>
14+
<div class="media-content">
15+
<p class="title is-4">John Smith</p>
16+
<p class="subtitle is-6">@johnsmith</p>
17+
</div>
18+
</div>
19+
20+
<div class="content">
21+
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
22+
Phasellus nec iaculis mauris. <a>@bulmaio</a>.
23+
<a href="#">#css</a> <a href="#">#responsive</a>
24+
<br>
25+
<time datetime="2016-1-1">11:09 PM - 1 Jan 2016</time>
26+
</div>
27+
28+
<footer class="card-footer">
29+
<a href="#" class="card-footer-item">Save</a>
30+
<a href="#" class="card-footer-item">Edit</a>
31+
<a href="#" class="card-footer-item">Delete</a>
32+
</footer>
33+
</div>
34+
</div>
File renamed without changes.

web/app_prod.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
use Symfony\Component\HttpFoundation\Request;
4+
5+
require __DIR__.'/../vendor/autoload.php';
6+
if (PHP_VERSION_ID < 70000) {
7+
include_once __DIR__.'/../var/bootstrap.php.cache';
8+
}
9+
10+
$kernel = new AppKernel('prod', false);
11+
if (PHP_VERSION_ID < 70000) {
12+
$kernel->loadClassCache();
13+
}
14+
//$kernel = new AppCache($kernel);
15+
16+
// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
17+
//Request::enableHttpMethodParameterOverride();
18+
$request = Request::createFromGlobals();
19+
$response = $kernel->handle($request);
20+
$response->send();
21+
$kernel->terminate($request, $response);

0 commit comments

Comments
 (0)