-
Notifications
You must be signed in to change notification settings - Fork 1
/
social-preview.css
143 lines (125 loc) · 2.61 KB
/
social-preview.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
/**
* Social Preview
*
* This library is meant to dynamically creating previews for social sharing.
*
* @link https://github.com/kktsvetkov/js-social-preview
* @author Kaloyan K. Tsvetkov <[email protected]>
* @license MIT https://opensource.org/licenses/MIT
*/
div.social-preview-card
{
padding: 0;
border: 0;
vertical-align: baseline;
line-height: 1.2;
text-align: left;
font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
font-size: 12px;
background: #fff;
color: #222;
box-shadow: 0 0 12px rgba(0,0,0,0.5);
width: 510px;
margin: 0 auto;
}
div.social-preview-card.social-preview-small
{
font-family: helvetica, arial, sans-serif;
height: 158px;
}
div.social-preview-card img
{
background-position: center center;
background-size: cover;
background-color: #222;
display: block;
opacity: 1;
transition: opacity 0.3s;
width: 100%;
border: 0;
}
div.social-preview-card.social-preview-small img
{
width: 158px;
height: 158px;
float: left;
margin-right: 15px;
}
div.social-preview-card.social-preview-big img
{
height: 300px;
}
div.social-preview-card h1 /* title */
{
background-color: transparent;
border: 0;
font-size: 16px;
font-weight: normal;
color: #222;
margin: 0;
letter-spacing: 0px;
/* .social-preview-small */
font: 18px/22px Georgia, serif;
padding: 10px 6px 5px 0;
width: 330px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
div.social-preview-card.social-preview-big h1
{
width: auto;
font-family: "Helvetica Neue", Helvetica, Arial, "sans-serif";
font-size: 14px;
font-weight: bold;
line-height: 1em;
padding: 10px 14px 7px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
div.social-preview-card p /* description */
{
background-color: transparent;
margin: 0;
padding: 0;
border: 0;
text-align: left;
color: #333;
/* .social-preview-small */
height: 58px;
width: 330px;
overflow: hidden;
text-overflow: ellipsis;
}
div.social-preview-card.social-preview-big p
{
font-size: 14px;
line-height: 18px;
padding: 0 14px 5px;
height: 70px;
width: auto;
}
div.social-preview-card a /* site + url */
{
background-color: transparent;
padding: 0;
border: 0;
color: #90949c;
font-size: 11px;
line-height: 11px;
margin: 40px 0 0;
text-transform: uppercase;
display: block;
text-decoration:none;
}
div.social-preview-card.social-preview-big a
{
margin: 0;
display: block;
color: #8899a6;
font-size: 12px;
line-height: 12px;
padding: 2px 14px 16px;
text-transform: lowercase;
}