grid.css
757 Bytes
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
/* styling the grid page's grid elements */
.center {
text-align: center;
}
.center [class*="col-"] {
margin-top: 2px;
margin-bottom: 2px;
position: relative;
text-overflow: ellipsis;
}
.center [class*="col-"] div{
position: relative;
z-index: 2;
padding-top: 4px;
padding-bottom: 4px;
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 100%;
}
.center [class*="col-"] div span{
position: relative;
z-index: 2;
}
.center [class*="col-"] div:before {
display: block;
content: "";
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
z-index: 1;
border: 1px solid #DDD;
}
.center [class*="col-"] div:hover:before {
background-color: #FCE6A6;
border-color: #EFD27A;
}