2020-01-05 02:40:04 +00:00
|
|
|
.image img.hero-img {
|
2019-12-29 22:31:32 +00:00
|
|
|
display: block;
|
2020-01-05 02:40:04 +00:00
|
|
|
height: auto;
|
|
|
|
|
width: 70%;
|
|
|
|
|
max-width: 1100px;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
margin-top: 1.5rem;
|
2019-12-29 22:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-05 02:40:04 +00:00
|
|
|
.hero-booticon {
|
|
|
|
|
font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
|
|
|
|
|
margin: 0 auto 30px;
|
2019-12-29 22:31:32 +00:00
|
|
|
width: 100%;
|
2020-01-05 02:40:04 +00:00
|
|
|
font-size: 8vw;
|
|
|
|
|
display: block;
|
|
|
|
|
font-weight: 500;
|
2019-12-29 22:31:32 +00:00
|
|
|
text-align: center;
|
2020-01-05 02:40:04 +00:00
|
|
|
cursor: default;
|
2019-12-29 22:31:32 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-05 02:40:04 +00:00
|
|
|
.code-example {
|
|
|
|
|
position: relative;
|
|
|
|
|
font-family: monospace;
|
|
|
|
|
background: #272b38;
|
|
|
|
|
color: #48d8a0;
|
|
|
|
|
border-radius: 8px;
|
|
|
|
|
padding: 1.5rem;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.button.clipboard {
|
|
|
|
|
position: absolute;
|
|
|
|
|
top: 0;
|
|
|
|
|
right: 0;
|
|
|
|
|
z-index: 10;
|
|
|
|
|
display: block;
|
|
|
|
|
padding: 5px 8px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
background-color: #767676;
|
|
|
|
|
border-color: #767676;
|
|
|
|
|
border-radius: 0 4px 0 4px;
|
|
|
|
|
cursor: pointer;
|
2019-12-29 22:31:32 +00:00
|
|
|
}
|
2019-11-24 22:44:26 +00:00
|
|
|
|
2021-10-15 23:11:10 +00:00
|
|
|
.flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: row;
|
|
|
|
|
justify-content: flex-start;
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-12 01:16:44 +00:00
|
|
|
.is-fullwidth {
|
|
|
|
|
flex-grow: 1;
|
2019-11-24 22:44:26 +00:00
|
|
|
}
|
|
|
|
|
|
2020-01-12 01:16:44 +00:00
|
|
|
.is-vertical {
|
2020-01-05 02:40:04 +00:00
|
|
|
flex-direction: column;
|
2019-11-24 22:44:26 +00:00
|
|
|
}
|
2021-10-15 23:11:10 +00:00
|
|
|
|
|
|
|
|
.align-middle {
|
|
|
|
|
vertical-align: middle;
|
|
|
|
|
}
|