1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
a.pdm-expansions {
cursor: pointer;
font-weight: bold;
color: currentColor;
}
.bot-container {
z-index: 9;
position: fixed;
width: 400px;
right: 20px;
bottom: 110px;
display: flex;
flex-direction: column;
align-items:end;
}
.bot-container > iframe {
width:100%;
border:none;
border-radius:0.5rem;
transition: height 0.3s ease-in-out;
height: 0;
}
.bot-button {
padding: 0.8rem;
border-radius: 50%;
width: 80px;
height: 80px;
background-color: var(--md-primary-fg-color);
transition: all 0.2s ease-in-out;
fill: white;
}
.bot-button:hover {
transform: translateY(-3px);
padding: 0.7rem;
}
/* for readthedocs badge */
#readthedocs-embed-flyout {
position: sticky;
bottom: 0px;
width: auto;
max-width: 200px;
}
|