2019-05-30 22:13:57 +02:00
|
|
|
html {
|
|
|
|
scroll-behavior: smooth;
|
|
|
|
}
|
|
|
|
|
|
|
|
#js-producthunt {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
|
|
|
|
2019-05-31 03:31:15 +02:00
|
|
|
#installation {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
2019-05-30 22:13:57 +02:00
|
|
|
#installation header > h3 {
|
|
|
|
margin: 1rem 2.5rem 1rem 0;
|
|
|
|
}
|
|
|
|
/* Make the ✔ / ❌ Emoji appear next to the button */
|
|
|
|
#installation header button {
|
|
|
|
position: relative;
|
|
|
|
margin-left: auto;
|
|
|
|
overflow: visible;
|
|
|
|
}
|
|
|
|
#installation header button span {
|
|
|
|
position: absolute;
|
|
|
|
left: -2rem;
|
|
|
|
display: inline-block;
|
|
|
|
transform: scale(1.3);
|
|
|
|
}
|
|
|
|
/* Fixed layout so columns don't jump when content changes */
|
|
|
|
#installation table {
|
|
|
|
table-layout: fixed;
|
|
|
|
}
|
|
|
|
#installation table th {
|
|
|
|
border: none;
|
|
|
|
vertical-align: top;
|
|
|
|
width: 35%;
|
|
|
|
}
|
|
|
|
|
2019-05-31 00:36:55 +02:00
|
|
|
body > footer {
|
2019-05-31 02:37:45 +02:00
|
|
|
padding-top: 2rem;
|
2019-05-31 00:36:55 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: flex-end;
|
|
|
|
align-items: flex-end;
|
|
|
|
}
|
|
|
|
|
2019-05-30 22:13:57 +02:00
|
|
|
/* Used for (Links / ProductHunt) and (Installation / Copy-Button) rows */
|
|
|
|
.row {
|
|
|
|
display: flex;
|
|
|
|
flex-wrap: wrap;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Use proper Emoji instead of plain Unicode chars */
|
|
|
|
.emoji {
|
|
|
|
font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', system-ui, -apple-system,
|
|
|
|
BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans,
|
|
|
|
Helvetica Neue, sans-serif;
|
|
|
|
}
|
2019-05-31 00:15:50 +02:00
|
|
|
.translucent {
|
2019-05-31 03:31:15 +02:00
|
|
|
opacity: 0.4;
|
2019-05-31 00:15:50 +02:00
|
|
|
}
|
2019-05-30 22:13:57 +02:00
|
|
|
|
|
|
|
/* For the bounce transitions of code snippet and copy success Emoji */
|
|
|
|
.v-enter,
|
|
|
|
.v-leave-to {
|
2019-05-31 01:18:06 +02:00
|
|
|
transform: scale(0) !important;
|
2019-05-30 22:13:57 +02:00
|
|
|
}
|
|
|
|
.v-enter-active,
|
|
|
|
.v-leave-active {
|
|
|
|
transition: transform 220ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
|
|
|
|
}
|
2019-05-31 03:31:15 +02:00
|
|
|
[v-cloak] > * {
|
2019-05-30 22:13:57 +02:00
|
|
|
display: none;
|
|
|
|
}
|
2019-05-31 01:28:24 +02:00
|
|
|
[v-cloak]::after {
|
2019-05-30 22:13:57 +02:00
|
|
|
content: 'Version picker is loading...';
|
|
|
|
}
|