2021-03-08 23:27:16 -05:00
|
|
|
@use '../../constants';
|
|
|
|
@use '../../mixins';
|
2021-03-08 19:23:10 -05:00
|
|
|
|
2017-03-30 12:21:50 -07:00
|
|
|
.card-container {
|
2021-02-02 14:35:45 +02:00
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
flex-wrap: wrap;
|
2021-02-02 14:35:45 +02:00
|
|
|
justify-content: center;
|
2021-02-02 14:35:45 +02:00
|
|
|
margin: 16px 0;
|
2017-03-30 12:21:50 -07:00
|
|
|
|
2021-02-02 14:35:45 +02:00
|
|
|
.docs-card {
|
2021-06-09 18:32:41 +01:00
|
|
|
@include mixins.card(35%);
|
2021-03-08 23:27:16 -05:00
|
|
|
|
2021-02-02 14:35:45 +02:00
|
|
|
max-width: 340px;
|
2021-02-02 14:35:45 +02:00
|
|
|
min-width: 300px;
|
|
|
|
margin: 24px 16px;
|
2021-06-09 18:32:41 +01:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: space-between;
|
2021-02-02 14:35:45 +02:00
|
|
|
|
|
|
|
@media screen and (max-width: 600px) {
|
|
|
|
width: 100%;
|
|
|
|
margin: 8px auto;
|
|
|
|
max-width: none;
|
|
|
|
}
|
2017-03-30 12:21:50 -07:00
|
|
|
|
2021-02-02 14:35:45 +02:00
|
|
|
section {
|
2021-03-08 23:27:16 -05:00
|
|
|
@include mixins.font-size(20);
|
|
|
|
@include mixins.line-height(24);
|
2021-02-02 14:35:45 +02:00
|
|
|
margin: 0;
|
2021-06-09 18:32:41 +01:00
|
|
|
padding: 2.7rem 0 2.1rem;
|
2021-02-02 14:35:45 +02:00
|
|
|
text-transform: none;
|
|
|
|
text-align: center;
|
|
|
|
}
|
2019-07-15 14:43:25 -07:00
|
|
|
|
2021-02-02 14:35:45 +02:00
|
|
|
p {
|
2021-03-08 23:27:16 -05:00
|
|
|
@include mixins.font-size(13);
|
|
|
|
@include mixins.line-height(24);
|
2021-02-02 14:35:45 +02:00
|
|
|
padding: 0 16px;
|
|
|
|
margin: 0;
|
2021-06-09 18:32:41 +01:00
|
|
|
margin-bottom: 1.6rem;
|
2021-02-02 14:35:45 +02:00
|
|
|
text-align: center;
|
|
|
|
}
|
2017-03-30 12:21:50 -07:00
|
|
|
|
2021-02-02 14:35:45 +02:00
|
|
|
.card-footer {
|
2021-06-09 18:32:41 +01:00
|
|
|
margin-bottom: 0;
|
2021-02-02 14:35:45 +02:00
|
|
|
box-sizing: border-box;
|
2021-06-09 18:32:41 +01:00
|
|
|
@include mixins.line-height(24);
|
|
|
|
padding: 1.3rem 15px;
|
2021-02-02 14:35:45 +02:00
|
|
|
text-align: right;
|
|
|
|
|
|
|
|
a {
|
2021-03-08 23:27:16 -05:00
|
|
|
@include mixins.font-size(13);
|
2019-07-15 14:43:25 -07:00
|
|
|
}
|
2017-03-30 12:21:50 -07:00
|
|
|
}
|
2021-02-02 14:35:45 +02:00
|
|
|
}
|
2017-04-25 14:48:01 -07:00
|
|
|
}
|
2018-07-19 15:00:08 -07:00
|
|
|
|
|
|
|
.card-section {
|
|
|
|
padding: 16px 32px;
|
|
|
|
margin: 16px 0;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
// Removes on-hover effect from card mixin
|
|
|
|
&:hover {
|
2021-03-08 23:27:16 -05:00
|
|
|
box-shadow: 0 2px 2px rgba(constants.$black, 0.24), 0 0 2px rgba(constants.$black, 0.12);
|
2018-07-19 15:00:08 -07:00
|
|
|
}
|
|
|
|
|
2019-07-15 14:43:25 -07:00
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6 {
|
2018-07-19 15:00:08 -07:00
|
|
|
margin: 8px 0;
|
|
|
|
}
|
|
|
|
|
2019-07-15 14:43:25 -07:00
|
|
|
a,
|
|
|
|
.button,
|
|
|
|
button {
|
2018-07-19 15:00:08 -07:00
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
}
|