-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimages.css
More file actions
116 lines (97 loc) · 2.38 KB
/
Copy pathimages.css
File metadata and controls
116 lines (97 loc) · 2.38 KB
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
@charset "UTF-8";
@import url(http://fonts.googleapis.com/css?family=Droid+Sans|Droid+Sans+Mono);
body {
font-family: 'Droid Sans', Arial, sans-serif;
}
h2 {
text-indent: 2em;
clear: left;
}
ul li {
display: inline;
}
ul a {
background-color: rgb(255, 255, 255);
border: 1px solid;
border-radius: 0.5em;
color: rgb(125,125,125);
display: block;
float: left;
height: 14.85em;
margin: 0 1em 1em;
overflow: hidden;
padding: 0.75em 0.65em 1.35em;
position: relative;
text-align: center;
text-decoration: none;
text-indent: 0;
width: 10.5em;
}
ul a:before {
content: '';
display: inline-block;
height: 100%;
vertical-align: middle;
}
ul a:after {
content: attr(title);
position: absolute;
bottom: 0;
left: 0;
width: 100%;
}
ul a:hover {
color: rgb(0,0,0);
-webkit-transform: scale(1.25);
-moz-transform: scale(1.25);
transform: scale(1.25);
-webkit-box-shadow: 0 0.2em 0.45em rgba(0,0,0,.5);
-moz-box-shadow: 0 0.2em 0.45em rgba(0,0,0,.5);
box-shadow: 0 0.2em 0.45em rgba(0,0,0,.5);
overflow: visible;
position: relative;
z-index: 1;
}
ul img {
max-width: 100%;
max-height: 100%;
vertical-align: middle;
border-radius: 0.35em;
}
.folder {
display: block;
text-indent: 1em;
margin: 0;
}
.folder-closed {
}
.folder-closed .toggle-link:hover::after {
content: ' -- Click to expand section';
}
.folder-closed a {
font-size: 25%;
}
.folder-closed ul {
display: table;
margin: 0 auto;
max-width: 100%;
position: relative;
table-layout: fixed;
}
.folder-closed li {
display: table-cell;
float: left;
}
.toggle-link {
cursor: pointer;
}
.toggle-link:hover {
text-decoration: underline;
}
.toggle-link:hover::after {
content: ' -- Click to collapse section';
font-size: 60%;
}
#list {
padding: 0;
}