-
Notifications
You must be signed in to change notification settings - Fork 69
/
grid.css
108 lines (93 loc) · 2.14 KB
/
grid.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
a {
outline: none;
}
ul.icons {
list-style: none;
padding: 0;
margin: 0;
}
#iconContainer {
width: 100%;
overflow: auto;
padding: 0 0 50px 0;
}
ul.icons li {
width: 220px;
overflow: hidden;
float: left;
margin: 5px 5px;
padding: 3px;
background-color: white;
color: black;
font-size: 12px;
display: block;
}
ul.icons li:hover {
background-color: #ddd;
color: #333;
}
ul.icons img.new_activity {
position: absolute;
margin-top: 90px;
margin-left: 128px;
}
.icon_link {
cursor: pointer;
}
ul.icons li p.icon_content {
font-size: 14px;
font-weight: bold;
margin: 0 0 3px 0;
width: 220px;
white-space: nowrap;
overflow: hidden;
color: black;
height: 20px;
}
ul.icons li .image_holder {
width: 218px;
height: 140px;
overflow: hidden;
border: 1px solid #ddd;
background-color: #ddd;
}
ul.icons li:hover .image_holder {
border: 1px solid #ddd;
}
ul.icons li img {
margin-top: 0;
}
.grid_title {
font-size: 160%;
font-weight: bold;
}
#middle-column.no_right_bar {
margin-right: 0;
}
#middle-column.no_left_bar {
margin-left: 0;
}
/** Shadebox stuff from here down **/
div#shadebox_overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 500px;
background: black;
/* for IE */
filter:alpha(opacity=70);
/* CSS3 standard */
opacity:0.7;
z-index: 100000;
cursor: pointer;
}
#shadebox_content {
background: #fff;
}
#shadebox_close {
position: absolute;
top: -10px;
right: -10px;
cursor: pointer;
}