mirror of
https://github.com/amiaopensource/ffmprovisr.git
synced 2025-11-18 01:27:47 +01:00
Compare commits
26 Commits
v2017-10-1
...
v2017-10-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
0c32e03f3a | ||
|
|
1ac02df52a | ||
|
|
24b8c5ac35 | ||
|
|
9fceb27952 | ||
|
|
1e9629051f | ||
|
|
b5e95143ca | ||
|
|
0a2e1ca63a | ||
|
|
21a019612c | ||
|
|
80ba7cfaa6 | ||
|
|
132a00f9e7 | ||
|
|
d73ae6a382 | ||
|
|
f427a05c89 | ||
|
|
3555a692dc | ||
|
|
11bf8d4de2 | ||
|
|
4ccf83b953 | ||
|
|
f6be6aa37e | ||
|
|
04432d0323 | ||
|
|
ea323d4b01 | ||
|
|
082f9a1175 | ||
|
|
04776428c8 | ||
|
|
b1f7f5cad4 | ||
|
|
6d41096dd5 | ||
|
|
77c31a7c5c | ||
|
|
0c9086d70d | ||
|
|
2b6dfac5b0 | ||
|
|
ba21f8b88d |
101
css/css.css
101
css/css.css
@@ -1,3 +1,11 @@
|
|||||||
|
html, body {
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #888888;
|
||||||
|
background-color: #060606;
|
||||||
|
margin: 0;
|
||||||
|
word-break: break-word;
|
||||||
|
}
|
||||||
|
|
||||||
.grid {
|
.grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
@@ -26,21 +34,21 @@
|
|||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (max-width: 999px) {
|
@media only screen and (max-width: 999px) {
|
||||||
.grid {
|
.grid {
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"header"
|
"header"
|
||||||
"sidebar"
|
"sidebar"
|
||||||
"content"
|
"content"
|
||||||
"footer";
|
"footer";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 1000px) {
|
@media only screen and (min-width: 1000px) {
|
||||||
.grid {
|
.grid {
|
||||||
grid-gap: 1rem;
|
grid-gap: 1rem;
|
||||||
grid-template-columns: 0.25fr auto;
|
grid-template-columns: 25% auto;
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
"header header"
|
"header header"
|
||||||
"sidebar content"
|
"sidebar content"
|
||||||
@@ -48,6 +56,25 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media only screen and (min-width: 1500px) {
|
||||||
|
.grid {
|
||||||
|
max-width: 70%;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #91cf91;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #5cb85c;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:visited {
|
||||||
|
color: #449d44;
|
||||||
|
}
|
||||||
|
|
||||||
.license img {
|
.license img {
|
||||||
max-width: 10em;
|
max-width: 10em;
|
||||||
display: inline;
|
display: inline;
|
||||||
@@ -63,20 +90,22 @@ h1 {
|
|||||||
}
|
}
|
||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
font-size: 3em;
|
font-size: 1.5em;
|
||||||
|
margin: 5px 8px 8px 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading {
|
||||||
|
font-size: 2em;
|
||||||
|
margin: 6px 0px 12px 0px;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
h3 {
|
||||||
font-size: 2em;
|
font-size: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.intro-lead {
|
.intro-lead {
|
||||||
font-family: 'Montserrat', sans-serif;
|
font-family: 'Montserrat', sans-serif;
|
||||||
font-size: 20px;
|
font-size: 1em;
|
||||||
}
|
|
||||||
|
|
||||||
.select-from {
|
|
||||||
font-size: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
@@ -109,7 +138,22 @@ div {
|
|||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
button {
|
||||||
|
font: inherit;
|
||||||
|
font-family: inherit;
|
||||||
|
color: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
.btn {
|
.btn {
|
||||||
|
border: 1px solid transparent;
|
||||||
|
background-color: #424242;
|
||||||
|
font-size: 1em;
|
||||||
|
line-height: 1.5em;
|
||||||
|
white-space: normal;
|
||||||
|
cursor: pointer;
|
||||||
|
padding: 8px 12px;
|
||||||
|
border-radius: 4px;
|
||||||
|
padding-left: 2.5em;
|
||||||
margin: 8px;
|
margin: 8px;
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
@@ -120,7 +164,6 @@ div {
|
|||||||
backface-visibility: hidden;
|
backface-visibility: hidden;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
position: relative;
|
position: relative;
|
||||||
padding-left: 2.5em;
|
|
||||||
-webkit-transition-duration: 0.3s;
|
-webkit-transition-duration: 0.3s;
|
||||||
transition-duration: 0.3s;
|
transition-duration: 0.3s;
|
||||||
}
|
}
|
||||||
@@ -146,15 +189,31 @@ div {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.contents-list {
|
.contents-list {
|
||||||
color: black;
|
color: white;
|
||||||
|
border: 1px solid black;
|
||||||
|
background-color: #383838;
|
||||||
|
padding: 14px;
|
||||||
|
font-family: "Montserrat";
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 1em;
|
||||||
|
border:1px solid rgba(255, 255, 255, 0);
|
||||||
|
transition:all .5s ease-in-out;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar a {
|
||||||
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contents-list:hover {
|
.contents-list:hover {
|
||||||
color: #2a9fd6;
|
color: black;
|
||||||
|
font-size: 1.05em;
|
||||||
|
background-color: #449d44;
|
||||||
|
border:1px solid black;
|
||||||
}
|
}
|
||||||
|
|
||||||
.contents-list:before {
|
.contents-list:before {
|
||||||
content: "📼"
|
content: "📼";
|
||||||
|
padding-right: 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.codeblock {
|
.codeblock {
|
||||||
|
|||||||
BIN
img/cc.png
Normal file
BIN
img/cc.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
3679
index.html
3679
index.html
File diff suppressed because it is too large
Load Diff
28
js/js.js
28
js/js.js
@@ -4,25 +4,21 @@ $(document).ready(function() {
|
|||||||
$('[data-toggle="tooltip"]').tooltip()
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
});
|
});
|
||||||
|
|
||||||
// open modal window if a hash is found in URL
|
// open recipe window if a hash is found in URL
|
||||||
if(window.location.hash) {
|
if(window.location.hash) {
|
||||||
$(window.location.hash).modal('show');
|
id = window.location.hash
|
||||||
// add direct link to modal window
|
$(id).collapse('show');
|
||||||
$(".link").empty();
|
$('html, body').animate({ scrollTop: $(id).offset().top}, 1000);
|
||||||
$(".link").append("<small>Link to this command: <a href="+window.location.href+">"+window.location.href+"</a></small>");
|
$(id + " .link").empty();
|
||||||
|
$(id + " .link").append("<small>Link to this command: <a href="+window.location.href+">"+window.location.href+"</a></small>");
|
||||||
}
|
}
|
||||||
|
|
||||||
// add hash to URL when modal is opened
|
// add hash URL when recipe is opened
|
||||||
$('span[data-toggle="modal"]').on("click", function(){
|
$('span[data-toggle="collapse"]').on("click", function(){
|
||||||
window.location.hash = $(this).attr("data-target");
|
id = $(this).attr("data-target");
|
||||||
// add direct link to modal window
|
window.location.hash = id
|
||||||
$(".link").empty();
|
$(id + " .link").empty();
|
||||||
$(".link").append("<small>Link to this command: <a href="+window.location.href+">"+window.location.href+"</a></small>");
|
$(id + " .link").append("<small>Link to this command: <a href="+window.location.href+">"+window.location.href+"</a></small>");
|
||||||
});
|
|
||||||
|
|
||||||
// remove hash from URL when modal is closed
|
|
||||||
$(document).on('hide.bs.modal', function (e) {
|
|
||||||
history.pushState("", document.title, window.location.pathname);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user