summaryrefslogtreecommitdiff
path: root/talermerchantdemos/static/torsten.css
blob: c68262e8e9fd4274a3936069fb85ed6b15edf9c3 (plain)
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
.warn {
    background-color: #aa393977;
    padding: 1em;
}
@keyframes hoveranim {
    from {left:0;}
    to {left:1vw;}
}
@keyframes hoveranimrevert {
    from {left:1vw;}
    to {left:0;}
}
.notice {
    border-radius: 1em;
    background: #0333;
    border-left: 0.3em solid #033;
    padding-left: 1em;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    margin-top: 2em;
    margin-bottom: 2em;
}
.notice {
    position: relative;
    left: 0;
    animation-name: hoveranimrevert;
    animation-duration: 1s;
}
.notice:hover {
    left: 1vw;
    animation-name: hoveranim;
    animation-duration: 1s;
}
#main a:link, #main a:visited, #main a:hover, #main a:active {
    color: black;
}