blob: 2d3aa19caf41a8a0c6e14b6c7c09613b77704683 (
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
59
60
|
.main {
display: flex;
}
.main div {
padding: 2em;
}
#photos {
width: 30%;
background: #fd4;
}
#photos-inner {
position: fixed;
height: 100%
}
#photos-inner img {
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;
}
#vlad {
position: absolute;
left: 2em;
top: 5%;
}
#garet {
position: absolute;
left: 10em;
top: 10%;
}
#ivan {
position: absolute;
left: 2em;
top: 30%;
}
#sofia {
position: absolute;
left: 10em;
top: 35%;
}
#bio {
width: 45%;
background: #fee;
}
|