blob: 6883f8ac62ba28ff9bf29131c6b1b2f77a73a079 (
plain)
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
|
.main {
display: flex;
}
.main div {
padding: 2em;
}
#photos {
width: 30%;
background: #fd4;
}
#photos-inner {
position: fixed;
height: 100%
}
#photos-inner img {
position: absolute;
height: 33%;
border-color: #ddd;
border-width: 10px;
border-style: solid;
border-radius: 20%;
filter: grayscale(1);
transition: 1s;
}
#photos-inner img:hover {
filter: none;
}
/* TODO: fix photos div height when zoomed out */
#vlad {
left: 2em;
top: 5%;
}
#garet {
left: 10em;
top: 10%;
}
#ivan {
left: 2em;
top: 30%;
}
#sofia {
left: 10em;
top: 35%;
}
#bio {
width: 45%;
background: #fee;
}
|