-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
90 lines (80 loc) · 3.05 KB
/
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
text-align:center;
background-image: url('images/grass.jpg');
background-size: 100%;
color: white;
}
#author {
font-style: italic;
text-align: right;
}
/* Twitter button adapted from: https://gist.github.com/jpwright/2339817 */
.twitter-share-button, .btn {
inherit: none;
height: 16px;
display: inline-block;
border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -ms-linear-gradient(top, #FEFEFE 0%, #DFDFDF 100%);
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -moz-linear-gradient(top, #FEFEFE 0%, #DFDFDF 100%);
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -o-linear-gradient(top, #FEFEFE 0%, #DFDFDF 100%);
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -webkit-gradient(linear, left top, left bottom, color-stop(0, #FEFEFE), color-stop(1, #DFDFDF));
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -webkit-linear-gradient(top, #FEFEFE 0%, #DFDFDF 100%);
border: 1px solid #cccccc;
padding-left: 22px;
padding-right: 4px;
padding-top: 2px;
font-weight: bold;
font-size: 0.7em;
font-family: Arial;
color: #333333;
text-decoration: none;
}
.twitter-share-button:hover {
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -ms-linear-gradient(top, #f7f7f7 0%, #d9d9d9 100%);
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -moz-linear-gradient(top, #f7f7f7 0%, #d9d9d9 100%);
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -o-linear-gradient(top, #f7f7f7 0%, #d9d9d9 100%);
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -webkit-gradient(linear, left top, left bottom, color-stop(0, #f7f7f7), color-stop(1, #d9d9d9));
background: url('http://assets.espn.go.com/prod/assets/bird_16_blue.png') no-repeat 2px 1px, -webkit-linear-gradient(top, #f7f7f7 0%, #d9d9d9 100%);
}
/* Quote display adapted from: https://dev.twitter.com/web/embedded-tweets/css */
blockquote {
background-color: #e5e5e5;
color: black;
margin-left: auto;
margin-right: auto;
font-family: "Helvetica Neue", Roboto, "Segoe UI", Calibri, sans-serif;
font-size: 12px;
font-weight: bold;
line-height: 16px;
border-color: #eee #ddd #bbb;
border-radius: 5px;
border-style: solid;
border-width: 1px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
padding: 0 16px 16px 16px;
width: 50%;
}
.tweet-style {
font-size: 16px;
font-weight: normal;
line-height: 20px;
}
.btn {
background-image: none;
padding-left: 4px;
background-color: #e5e5e5;
}
header {
}
.shade {
background-origin: content-box;
background-color: rgba(0,0,0,0.35);
margin-left: auto;
margin-right: auto;
width:60%;
height: auto;
padding-bottom: 20px;
border-radius: 10px;
}