ffmprovisr/css/css.css

103 lines
1.7 KiB
CSS
Raw Permalink Normal View History

h1, h2, h3, h4, h5, h6 {
2015-03-20 22:33:41 -04:00
font-family: 'Montserrat', sans-serif;
}
code {
word-break: break-all;
}
2015-12-01 20:45:31 -05:00
dd {
padding-left:24px;
}
2015-12-18 23:09:04 -05:00
dt {
font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
2015-12-18 23:09:04 -05:00
}
img {
display: block;
margin-left: auto;
margin-right: auto;
2017-03-05 08:34:16 +13:00
width: 100%;
}
.sample-image {
margin-bottom: 18px;
}
2015-03-21 00:15:06 -04:00
h1 {
letter-spacing:8px;
font-size:86px;
line-height:120px;
}
2015-03-20 22:33:41 -04:00
div {
font-family: 'Merriweather', serif;
2015-11-18 10:40:04 -08:00
color: white;
2015-03-20 22:33:41 -04:00
}
2015-11-18 14:44:37 -08:00
.btn {
2015-03-20 23:36:50 -04:00
margin: 8px;
2015-03-20 22:09:13 -04: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-20 22:11:55 -04:00
padding-left: 2.5em;
2015-03-20 22:09:13 -04:00
-webkit-transition-duration: 0.3s;
transition-duration: 0.3s;
}
2015-11-18 14:44:37 -08:00
.btn:before {
content: "💫";
2015-03-20 22:09:13 -04:00
position: absolute;
2015-03-20 22:11:55 -04:00
left: 1em;
2015-03-20 22:09:13 -04: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 14:44:37 -08:00
.btn:hover:before, .btn:focus:before, .btn:active:before {
2015-03-20 22:09:13 -04: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-03-01 03:40:16 +13:00
.beware {
font-size: 150%;
}
.footnote {
font-size: 90%;
}
2017-03-05 08:34:16 +13:00
@media only screen and (min-width: 576px) {
img {
max-width: 60%;
}
}
@media only screen and (min-width: 992px) {
img {
width: 100%;
}
}