summaryrefslogtreecommitdiffstats
path: root/site/common/css/main.css
blob: 6e8be97deccef62a4adf8481e016a578bee07dd3 (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
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
:not(br),a:hover{
color:#222;
padding:.1% 1%;
margin:1% auto;
max-width:95%;
line-height:1.4
}
html{
background:#eee;
font:99% sans-serif
}
div{
opacity:0.95;
background:#fff;
box-shadow:0 0 6px
}
li{
display:inline
}
.c li{
display:block
}
img{
float:right;
width:25%
}
a{
color:#33a
}
a,a:hover,strong,em{
padding:0
}




/* etc */
html{
background-image:url('/common/background/background.jpg');
background-attachment:fixed;
}
div:hover{
    -webkit-animation: fadein .5s;
       -moz-animation: fadein .5s;
        -ms-animation: fadein .5s;
         -o-animation: fadein .5s;
            animation: fadein .5s;
     opacity:1;
}

@keyframes fadein {
    from { opacity: 0.95; }
    to   { opacity: 1; }
}

@-moz-keyframes fadein {
    from { opacity: 0.95; }
    to   { opacity: 1; }
}

@-webkit-keyframes fadein {
    from { opacity: 0.95; }
    to   { opacity: 1; }
}

@-ms-keyframes fadein {
    from { opacity: 0.95; }
    to   { opacity: 1; }
}

@-o-keyframes fadein {
    from { opacity: 0.9; }
    to   { opacity: 1; }
}