Adds a solid start Foundation with a GlobalList.razor and OnStartUp.cs
BIN
CouchLog/wwwroot/Pictures/Inception.jpg
Normal file
|
After Width: | Height: | Size: 410 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/AppleTV.png
Normal file
|
After Width: | Height: | Size: 3.7 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/Disney+.png
Normal file
|
After Width: | Height: | Size: 72 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/Joyn.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/Netflix.png
Normal file
|
After Width: | Height: | Size: 9.5 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/Paramount+.png
Normal file
|
After Width: | Height: | Size: 91 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/Prime-Video.png
Normal file
|
After Width: | Height: | Size: 34 KiB |
BIN
CouchLog/wwwroot/StreamingPlatforms/WOWTV.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
@@ -1,5 +1,7 @@
|
||||
html, body {
|
||||
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
||||
background: #2d2d2d;
|
||||
color: white
|
||||
}
|
||||
|
||||
a, .btn-link {
|
||||
|
||||
8
CouchLog/wwwroot/lib/bootstrap/dist/js/site.js
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
window.initializeBootstrapCollapse = () => {
|
||||
var collapseElementList = [].slice.call(document.querySelectorAll('[data-bs-toggle="collapse"]'))
|
||||
var collapseList = collapseElementList.map(function (collapseEl) {
|
||||
return new bootstrap.Collapse(document.querySelector(collapseEl.dataset.bsTarget), {
|
||||
toggle: false
|
||||
})
|
||||
})
|
||||
};
|
||||