-
Notifications
You must be signed in to change notification settings - Fork 0
/
wp-repo-tracker.css
91 lines (79 loc) · 1.44 KB
/
wp-repo-tracker.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
.repo-tracker-issue-list {
font-family: verdana, sans-serif;
}
.repo-tracker-issue-entry {
background: #f8f8f8;
border: 1px solid #e5e5e5;
border-radius: 3px;
margin-bottom: 5px;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
position: relative;
}
.repo-tracker-issue-entry .title {
font-weight: bold;
}
.repo-tracker-issue-entry .title a {
color: #000000;
text-decoration: none;
box-shadow: none;
}
.repo-tracker-issue-entry .title a:hover {
color: #8080ff;
}
.repo-tracker-issue-entry .description {
color: #808080;
}
.repo-tracker-issue-entry .label {
color: #ffffff;
background: #8080ff;
border-radius: 5px;
padding: 3px;
padding-left: 5px;
padding-right: 5px;
}
.repo-tracker-issue-entry .num-comments {
position: absolute;
right: 10px;
top: 10px;
width: 50px;
height: 50px;
text-align: center;
padding-top: 5px;
font-weight: bold;
}
.repo-tracker-issue-entry .num-comments img {
position: absolute;
left: 0;
top: 0;
}
.repo-tracker-error {
background: #f88;
border-radius: 5px;
border: 1px solid #f00;
padding: 5px;
}
.repo-tracker-postit-entry {
display: inline-block;
width: 200px;
position: relative;
height: 200px;
}
.repo-tracker-postit-entry img {
position: absolute;
width: 200px;
left: 0;
top: 0;
}
.repo-tracker-postit-label {
font-family: cursive;
position: absolute;
left: 40px;
top: 30px;
margin-right: 40px;
text-align: center;
height: 120px;
overflow: hidden;
text-overflow: ellipsis;
}