-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
71 lines (65 loc) · 1.26 KB
/
styles.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
body {
padding-top:2%
}
a {
color: #000;
text-decoration: none;
}
a:hover {
color: #000;
text-decoration: underline;
}
.byline {
font-size: 0.625rem;
color: #999;
font-weight: 400;
font-style: normal;
font-family: georgia,"times new roman",times,serif;
display: inline-block;
}
.image {
float:right;
padding: 5px 5px 5px 5px;
display: inline-block;
}
.header {
font-size: 0.875rem;
font-weight: 700;
color:#000;
text-decoration: none;
font-style: normal;
font-family: georgia,"times new roman",times,serif;
display: inline-block;
}
.summary {
font-size: 0.8125rem;
font-style: normal;
font-family: georgia,"times new roman",times,serif;
display: inline-block;
margin-bottom: 12%;
}
#storyBits{
margin: auto;
width: 200px;
border: #333;
-webkit-animation: fadeIn .5s 1; /* Safari 4+ */
-moz-animation: fadeIn .5s 1; /* Fx 5+ */
-o-animation: fadeIn .5s 1; /* Opera 12+ */
animation: fadeIn .5s 1; /* IE 10+, Fx 29+ */
}
@-webkit-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-moz-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@-o-keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}
@keyframes fadeIn {
0% { opacity: 0; }
100% { opacity: 1; }
}