You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
795 B
53 lines
795 B
@use "./const.scss" as *;
|
|
|
|
.kg-width-wide {
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.kg-width-full {
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.kg-card {
|
|
width: auto;
|
|
max-width: 70vw;
|
|
padding: 0.2em;
|
|
border-width: 2px;
|
|
border-radius: 0.5em;
|
|
border-style: solid;
|
|
border-color: $main-color;
|
|
background-color: $main-color;
|
|
}
|
|
|
|
.kg-card > * {
|
|
vertical-align: top;
|
|
}
|
|
|
|
.kg-card img {
|
|
border-radius: 0.2em;
|
|
}
|
|
|
|
.kg-card figcaption {
|
|
text-align: center;
|
|
color: $background-color;
|
|
text-shadow: none;
|
|
padding-top: 0.3em;
|
|
}
|
|
|
|
.kg-code-card {
|
|
background-color: #333;
|
|
text-shadow: none;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
|
|
li.L0,
|
|
li.L1,
|
|
li.L2,
|
|
li.L3,
|
|
li.L5,
|
|
li.L6,
|
|
li.L7,
|
|
li.L8 {
|
|
list-style-type: decimal !important;
|
|
}
|
|
}
|
|
|