File size: 2,971 Bytes
9cc66e2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/* 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;
}