File size: 1,430 Bytes
da96562 | 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 83 84 | .matomo-comparisons {
h3 {
margin-top: 0;
margin-bottom: 0;
}
.comparison {
display: inline-block;
min-width: 164px;
margin-right: 16px;
padding: 14px;
background-color: @theme-color-background-contrast;
margin-bottom: 16px;
position: relative;
}
.comparison-type {
font-weight: bold;
text-transform: uppercase;
font-size: .7em;
color: @theme-color-text-lighter;
}
.remove-button {
font-size: .6em;
color: @theme-color-text-lighter;
position: absolute;
right: 12px;
top: 12px;
text-decoration: none;
&:hover {
text-decoration: none;
}
}
.title {
font-size: 1.1rem;
margin-top: 4px;
margin-bottom: 12px;
overflow-x: hidden;
max-width: 250px;
text-overflow: ellipsis;
white-space: nowrap;
a {
color: @theme-color-text-contrast;
}
}
.comparison-period {
margin-top: 4px;
> span {
display: inline-block;
}
.comparison-dot {
width: 1em;
height: 1em;
display: inline-block;
border-radius: .5em;
}
.comparison-period-label {
position: relative;
top: -3px;
margin-left: 6.5px;
display: inline-block;
font-size: .85rem;
font-style: italic;
}
}
}
.comparison-card-tooltip {
p {
font-size: 1.1em;
line-height: 1.3em;
color: @theme-color-text-invert-contrast;
}
}
|