forked from spacegauch0/jQuery-Tweets
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.css
More file actions
61 lines (52 loc) · 947 Bytes
/
main.css
File metadata and controls
61 lines (52 loc) · 947 Bytes
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
body {
background: #F1F1F1;
color: #888888;
font-family: "Calibri", Helvetica, Arial, sans-serif;
font-size: 13px;
text-shadow: 1px 1px 0 #FFFFFF;
}
a {
color: #e8771a;
text-decoration: none;
}
small a {
font-size: 14px;
}
pre {
background: #FAFAFA;
border: 1px solid #e4e4e4;
padding: 15px 15px 0;
width: 380px;
}
#main {
margin: 60px auto 0;
width: 420px;
}
#tweets {
background: #FAFAFA;
border: 1px solid #e4e4e4;
margin: 0;
padding: 0;
}
#tweets li {
border-bottom: 1px dotted #CCC;
list-style: none;
padding: 5px;
}
#tweets li:last-child {
border: 0;
}
.download {
background: #ff9f44;
border-radius: 6px;
color: #FFF;
font-size: 14px;
padding: 5px 10px;
text-shadow: 1px 1px #de822c;
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
-ms-border-radius: 6px;
}
.download:hover {
background: #eb6a31;
}