Spaces:
Runtime error
Runtime error
| /* Estilo Cards */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"] { | |
| background-color: #070707ef; | |
| box-shadow: 1px 1px 2px 2px #000000d2; | |
| box-sizing: border-box; | |
| padding: 4px 0px 20px 0px; | |
| border-radius: 14px; | |
| backdrop-filter: blur(4px); | |
| transition: ease-out; | |
| transition-property: background-color box-shadow transition; | |
| transition-duration: 88ms; | |
| } | |
| /* Estilo Cards:Hover*/ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]:hover { | |
| background-color: #070707d0; | |
| border: 2px thin; | |
| box-shadow: 2px 2px 3px 3px #000000fe; | |
| transition: ease-in; | |
| transition-property: background-color box-shadow transition; | |
| transition-duration: 110ms; | |
| } | |
| /* Interno Card: Titulo */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="element-container"]>.stHeadingContainer { | |
| text-align: center; | |
| align-self: center; | |
| } | |
| /* Interno Card: Texto */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="element-container"]>.stTextLabelWrapper>[data-testid="stText"] { | |
| padding: 0px 8px 0px 8px; | |
| } | |
| /* Interno Card: Markup */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="element-container"]>.stMarkdown>[data-testid="stMarkdownContainer"] { | |
| padding: 0px 8px 0px 8px; | |
| } | |
| /* Interno Card: Row imagenes */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="stHorizontalBlock"] { | |
| padding: 0px 8px 0px 8px; | |
| display: flex; | |
| } | |
| /* Interno Card: Imágenes */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="stHorizontalBlock"]>[data-testid="column"] { | |
| display: flex; | |
| justify-content: center; | |
| align-items: center; | |
| } | |
| /* Interno Card: Botones */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="element-container"]>[data-testid="stButton"]>.stTooltipIcon>div>[data-testid="stTooltipIcon"]>[data-testid="tooltipHoverTarget"]{ | |
| padding: 8px; | |
| display: flex; | |
| justify-content: center; | |
| text-align: center; | |
| width: 100%; | |
| } | |
| /* Interno Card: Expander */ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]>[data-testid="stExpander"]>ul { | |
| background-color: transparent; | |
| box-shadow: none; | |
| border: none; | |
| } | |
| /* Estilo Expander:Hover*/ | |
| [data-testid="stVerticalBlock"]>[style*="flex-direction: column;"]>[data-testid="stVerticalBlock"]:hover { | |
| background-color: #070707d0; | |
| border: 2px thin; | |
| box-shadow: 2px 2px 3px 3px #000000fe; | |
| transition: ease-in; | |
| transition-property: background-color box-shadow transition; | |
| transition-duration: 110ms; | |
| } | |