diff2html/website/templates/pages/index/index.css

66 lines
977 B
CSS
Raw Normal View History

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 {
2023-08-06 18:16:10 +00:00
font-family:
Helvetica Neue,
Helvetica,
Arial,
sans-serif;
2020-01-05 02:40:04 +00:00
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
}
2021-10-15 23:11:10 +00:00
.flex {
display: flex;
flex-direction: row;
justify-content: flex-start;
}
.is-fullwidth {
flex-grow: 1;
}
.is-vertical {
2020-01-05 02:40:04 +00:00
flex-direction: column;
}
2021-10-15 23:11:10 +00:00
.align-middle {
vertical-align: middle;
}