-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
85 lines (74 loc) · 1.3 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
body, html {
background-color: #999999;
color: #ffffff;
}
html {
margin: 0em;
padding: 1em 3%;
background-color: #999999;
color: #ffffff;
}
body {
padding: 1em;
color: #112233;
background-color: #ffffff;
font-family: Georgia, Palatina, serif;
box-shadow: 1px 1px 12px #000000;
}
h1 {
text-align: center;
}
#eli_widget {
width: 250px;
height: auto;
margin: 0;
padding: 0;
border: thin solid #eee;
border-radius: 12px;
box-shadow: 2px 1px 5px #000;
}
#eli_widget header {
text-align: left;
border-bottom: 5px solid #fb6104;
background-color: #43568e;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
color: #ffffff;
}
#eli_widget header img {
margin: 5px;
background-color: #ffffff;
border-top-left-radius: 12px;
float: left;
}
#eli_widget header p {
margin: 0;
line-height: 60px;
}
#eli_widget article {
display: block;
margin-bottom: 5px;
padding: 5px;
border-bottom: thin solid #eeeeee;
overflow: hidden; /* For too long link: hide but enable click on it */
}
#eli_widget article img {
margin: 5px;
max-width: 230px;
}
#eli_widget article p {
margin-top: 0px;
}
.tooltip {position: relative;}
.tooltip span {display: none;}
.tooltip:hover span {
display: block;
position: absolute;
left: 0; top: 10%;
margin: 20px 0 0;
width: 200px;
color: #4D4D4C;
border: thin solid #eeeeee;
padding: 4px;
background: white;
}