summaryrefslogtreecommitdiff
path: root/addons/account/static/src/scss/variables.scss
blob: 3e79231cecfc4e4aa60bfb3c65f987acdd373911 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
$o-account-action-col-width: 15px;
$o-account-main-table-borders-padding: 3px;
$o-account-light-border: 1px solid #bbb;
$o-account-initial-line-background: #f0f0f0;
$o-account-info-color: #44c;


@keyframes animate-red {
    0% {
        color: red;
    }
    100% {
        color: inherit;
    }
}

.animate {
    animation: animate-red 1s ease;
}