forked from braindef/PsychiatrieQuartett
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmall-style.css
74 lines (63 loc) · 943 Bytes
/
small-style.css
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
html {
padding: 8px 25px;
list-style: none;
background: #282828;
color: #ffffff;
font-family: monospace; }
/* unvisited link */
a:link {
color: #FFFFFF;
}
/* visited link */
a:visited {
color: #BBBBBB;
}
.slidein {
font-size: 2em;
animation-duration: 3s;
animation-name: slidein;
animation-iteration-count: 3;
animation-direction: alternate;
}
@keyframes slidein {
from {
margin-left:5%;
width:100%
}
to {
margin-left:0%;
width:100%;
}
}
.blink {
animation-duration: 1s;
animation-name: blink;
animation-iteration-count: infinite;
animation-direction: alternate;
animation-timing-function: ease-in-out;
}
@keyframes blink {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
.fl
{
height: 470px;
float: left;
margin: 10;
padding: 10;
}
.center
{
text-align: center;
margin: 0 auto;
}
.w70
{
width: 60%;
height: 82;
}