-
Notifications
You must be signed in to change notification settings - Fork 0
/
photo.css
60 lines (51 loc) · 836 Bytes
/
photo.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
body {
text-align: center;
}
.photo ul {
position:relative;
margin:0;
padding:0;
}
.photo li {
text-align:center;
display:inline-block;
list-style:none;
position:relative;
border:solid 5px #fff;
background:#fff;
box-shadow:0 0 15px 0px #555;
transition:all 1s ease;
-o-transition:all 1s ease;
-moz-transition:all 1s ease;
-webkit-transition:all 1s ease;
top: 50px;
margin-top: 45px;
margin-right: 35px;
}
.photo li:hover{
top:0px;
}
img {
height: 250px;
width: 300px;
}
@media all and (max-width: 580px) {
img {
height: 200px;
width: 250px;
}
}
/*
.photo li:nth-child(n) {
transform:rotate(5deg);
}
.photo li:nth-child(2n) {
transform:rotate(-5deg);
}
.photo li:nth-child(3n) {
transform:rotate(10deg);
}
.photo li:nth-child(5n) {
transform:rotate(-10deg);
}
*/