ffmprovisr/css/css.css

103 lines
1.7 KiB
CSS
Raw Normal View History

h1, h2, h3, h4, h5, h6 {
2015-03-21 03:33:41 +01:00
font-family: 'Montserrat', sans-serif;
}
code {
word-break: break-all;
}
2015-12-02 02:45:31 +01:00
dd {
padding-left:24px;
}
2015-12-19 05:09:04 +01:00
dt {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
2015-12-19 05:09:04 +01:00
}
img {
display: block;
margin-left: auto;
margin-right: auto;
2017-03-04 20:34:16 +01:00
width: 100%;
}
.sample-image {
margin-bottom: 18px;
}
2015-03-21 05:15:06 +01:00
h1 {
letter-spacing:8px;
font-size:86px;
line-height:120px;
}
2015-03-21 03:33:41 +01:00
div {
font-family: 'Merriweather', serif;
2015-11-18 19:40:04 +01:00
color: white;
2015-03-21 03:33:41 +01:00
}
2015-11-18 23:44:37 +01:00
.btn {
2015-03-21 04:36:50 +01:00
margin: 8px;
2015-03-21 03:09:13 +01:00
display: inline-block;
vertical-align: middle;
-webkit-transform: translateZ(0);
transform: translateZ(0);
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-moz-osx-font-smoothing: grayscale;
position: relative;
2015-03-21 03:11:55 +01:00
padding-left: 2.5em;
2015-03-21 03:09:13 +01:00
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
2015-11-18 23:44:37 +01:00
.btn:before {
content: "💫";
2015-03-21 03:09:13 +01:00
position: absolute;
2015-03-21 03:11:55 +01:00
left: 1em;
2015-03-21 03:09:13 +01:00
padding: 0 1px;
-webkit-transform: translateZ(0);
transform: translateZ(0);
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
-webkit-transition-property: transform;
transition-property: transform;
-webkit-transition-timing-function: ease-out;
transition-timing-function: ease-out;
}
2015-11-18 23:44:37 +01:00
.btn:hover:before, .btn:focus:before, .btn:active:before {
2015-03-21 03:09:13 +01:00
-webkit-transform: scale(1.3) translateZ(0);
transform: scale(1.3) translateZ(0);
}
.codeblock {
font-family: monospace
2017-01-27 14:56:21 +01:00
padding: 2px 4px;
font-size: 90%;
color: #c7254e;
background-color: #f9f2f4;
2017-03-05 06:49:49 +01:00
border-radius: 4px;
}
2017-02-28 15:40:16 +01:00
.beware {
font-size: 150%;
}
.footnote {
font-size: 90%;
}
2017-03-04 20:34:16 +01:00
@media only screen and (min-width: 576px) {
img {
max-width: 60%;
}
}
@media only screen and (min-width: 992px) {
img {
width: 100%;
}
}