mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-10-23 14:19:11 +02:00
Compare commits
73 Commits
v2017-07-1
...
v2017-10-1
Author | SHA1 | Date | |
---|---|---|---|
|
b483acdb6d | ||
|
d91fb336b9 | ||
|
97f62ae600 | ||
|
98d2459b79 | ||
|
719e3a73f5 | ||
|
439f1933da | ||
|
0f52cde91a | ||
|
8a14c6e5fb | ||
|
8c04a58949 | ||
|
6e93313528 | ||
|
b7bc7218b8 | ||
|
7ec21fb6d2 | ||
|
1e2b2dd18f | ||
|
9d4e18e6ef | ||
|
61681c8dd3 | ||
|
71e68b5e2e | ||
|
872eec2aa7 | ||
|
863f70054d | ||
|
16c8d68e39 | ||
|
08593bb221 | ||
|
516a78d397 | ||
|
89ea7a28bd | ||
|
763e9c594f | ||
|
fd7528a6bd | ||
|
efd9e55b66 | ||
|
da94557324 | ||
|
f5887473f3 | ||
|
17ea63f7b9 | ||
|
d7db07bcab | ||
|
e92a1cf713 | ||
|
96903f018c | ||
|
fcc95ce518 | ||
|
8c349b8282 | ||
|
93627e0da2 | ||
|
593bb63e23 | ||
|
3a58b6ae82 | ||
|
11848054a3 | ||
|
c0e9a05e1d | ||
|
7cbdd6a074 | ||
|
fa1cda441e | ||
|
7d07c3818a | ||
|
3374812782 | ||
|
9c871d760a | ||
|
22fa09470b | ||
|
9bae51d6a4 | ||
|
b598ed1040 | ||
|
23148d4721 | ||
|
df422912d6 | ||
|
e5f6f5cf2d | ||
|
96c382943b | ||
|
ef6e5d07dc | ||
|
bf260c2ee2 | ||
|
7f1a765dd8 | ||
|
6c85518288 | ||
|
63abcd36d0 | ||
|
905b75547b | ||
|
7aa124c3d1 | ||
|
50185eb04e | ||
|
975766188f | ||
|
fd1d596f50 | ||
|
18a80c10f1 | ||
|
c6f7593d65 | ||
|
e6962b3ca4 | ||
|
0ba25be082 | ||
|
e4611d8b6b | ||
|
d609a9b943 | ||
|
d132e86f1d | ||
|
e1e1060904 | ||
|
8b5fa8aa6a | ||
|
7bd05a8163 | ||
|
126fb1d284 | ||
|
9799316c19 | ||
|
6e4ed74841 |
107
css/css.css
107
css/css.css
@@ -1,9 +1,87 @@
|
||||
.grid {
|
||||
display: grid;
|
||||
align-content: center;
|
||||
grid-template-areas:
|
||||
"header"
|
||||
"sidebar"
|
||||
"content"
|
||||
"footer";
|
||||
}
|
||||
|
||||
.header {
|
||||
grid-area: header;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.content {
|
||||
grid-area: content;
|
||||
}
|
||||
|
||||
.sidebar {
|
||||
grid-area: sidebar;
|
||||
}
|
||||
|
||||
.footer {
|
||||
grid-area: footer;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 999px) {
|
||||
.grid {
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-areas:
|
||||
"header"
|
||||
"sidebar"
|
||||
"content"
|
||||
"footer";
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 1000px) {
|
||||
.grid {
|
||||
grid-gap: 1rem;
|
||||
grid-template-columns: 0.25fr auto;
|
||||
grid-template-areas:
|
||||
"header header"
|
||||
"sidebar content"
|
||||
"footer footer";
|
||||
}
|
||||
}
|
||||
|
||||
.license img {
|
||||
max-width: 10em;
|
||||
display: inline;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5, h6 {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
|
||||
h1 {
|
||||
letter-spacing: 0.1em;
|
||||
font-size: 7vw;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 3em;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
.intro-lead {
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.select-from {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
code {
|
||||
word-break: break-all;
|
||||
word-wrap: break-word;
|
||||
}
|
||||
|
||||
dd {
|
||||
@@ -25,11 +103,6 @@ img {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
letter-spacing: 8px;
|
||||
font-size: 86px;
|
||||
line-height: 120px;
|
||||
}
|
||||
|
||||
div {
|
||||
font-family: 'Merriweather', serif;
|
||||
@@ -72,6 +145,18 @@ div {
|
||||
transform: scale(1.3) translateZ(0);
|
||||
}
|
||||
|
||||
.contents-list {
|
||||
color: black;
|
||||
}
|
||||
|
||||
.contents-list:hover {
|
||||
color: #2a9fd6;
|
||||
}
|
||||
|
||||
.contents-list:before {
|
||||
content: "📼"
|
||||
}
|
||||
|
||||
.codeblock {
|
||||
font-family: monospace
|
||||
padding: 2px 4px;
|
||||
@@ -88,15 +173,3 @@ div {
|
||||
.footnote {
|
||||
font-size: 90%;
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 576px) {
|
||||
img {
|
||||
max-width: 60%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: 992px) {
|
||||
img {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
BIN
img/brng.gif
BIN
img/brng.gif
Binary file not shown.
Before Width: | Height: | Size: 7.6 MiB |
BIN
img/eia608.gif
BIN
img/eia608.gif
Binary file not shown.
Before Width: | Height: | Size: 11 MiB |
BIN
img/eia608_captions.gif
Normal file
BIN
img/eia608_captions.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.1 MiB |
BIN
img/outside_broadcast_range.gif
Normal file
BIN
img/outside_broadcast_range.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 MiB |
BIN
img/vhs.ico
Normal file
BIN
img/vhs.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
2928
index.html
2928
index.html
File diff suppressed because it is too large
Load Diff
@@ -1,14 +1,14 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
# This allows to open ffmprovisr locally from the terminal.
|
||||
# This allows to open the online version of the ffmprovisr, when the computer is
|
||||
# connected to the Web, and the local version otherwise.
|
||||
|
||||
if [[ "$(uname -s)" = "Darwin" ]] ; then
|
||||
default_browser=$(plutil -convert json ~/Library/Preferences/com.apple.LaunchServices/com.apple.launchservices.secure.plist -r -o - | grep https -b1 | tail -n1 | cut -d'"' -f4)
|
||||
if [ -d /usr/local/Cellar/ffmprovisr ] ; then
|
||||
ffmprovisr_path=$(find /usr/local/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
||||
fi
|
||||
if [ -z "${ffmprovisr_path}" ] ; then
|
||||
if ping -c 1 amiaopensource.github.io >/dev/null 2>&1 ; then
|
||||
ffmprovisr_path='https://amiaopensource.github.io/ffmprovisr/'
|
||||
else
|
||||
ffmprovisr_path=$(find /usr/local/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
||||
fi
|
||||
if [ -n "${default_browser}" ] ; then
|
||||
open -b "${default_browser}" "${ffmprovisr_path}"
|
||||
@@ -16,11 +16,12 @@ if [[ "$(uname -s)" = "Darwin" ]] ; then
|
||||
open "${ffmprovisr_path}"
|
||||
fi
|
||||
elif [[ "$(uname -s)" = "Linux" ]] ; then
|
||||
if [ -d ~/.linuxbrew/Cellar/ffmprovisr ] ; then
|
||||
if ping -c 1 amiaopensource.github.io >/dev/null 2>&1 ; then
|
||||
ffmprovisr_path='https://amiaopensource.github.io/ffmprovisr/'
|
||||
else
|
||||
ffmprovisr_path=$(find ~/.linuxbrew/Cellar/ffmprovisr -iname 'index.html' | sort -M | tail -n1)
|
||||
fi
|
||||
if [ -z "${ffmprovisr_path}" ] ; then
|
||||
ffmprovisr_path='https://amiaopensource.github.io/ffmprovisr/'
|
||||
fi
|
||||
xdg-open "${ffmprovisr_path}"
|
||||
else
|
||||
echo "Please locate the 'ffmprovisr' folder, and open the 'index.html' file in a browser."
|
||||
fi
|
||||
|
Reference in New Issue
Block a user