blob: e2fb34fa5bcec59bbd2df6561ae865bc957371f3 (
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
|
.container {
background-color: #fff;
}
body {
color: #444;
}
.twitter-widget {
overflow-y: scroll;
overflow-x: hidden;
height: 500px;
}
code {
border:1px dashed #E1E1E1;
color:#333344;
background:#FAFAFA;
font-family:monospace;
overflow:auto;
font-size:11px;
padding:0.2em;
}
a, a:visited {
color: #444;
}
a:hover {
color: #000;
text-decoration: none;
}
.tweets {
list-style: none;
}
.tweets li {
margin-top: 50px;
}
|