blob: ec5a9774069bb07cfebe4fad76677b9d043ee248 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
body {
background: #eee;
padding-left: 10%;
padding-right: 10%;
}
nav ol {
display: flex;
list-style-type: none;
}
nav ol li {
flex: 1;
}
.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;
}
|