summaryrefslogtreecommitdiff
path: root/artistes.css
blob: 2f33f7b1f94c03aa8683bedae2198d3bec5a30d8 (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
.main {
    display: flex;
}

.main div {
    padding: 2%;
}

#photos {
    width: 30%;
    flex-shrink: 0;
    background: #eee;
}

#photos img {
    width: 40%;
    border-color: #ddd;
    border-width: 1vw;
    border-style: solid;
    border-radius: 10%;
    filter: grayscale(1);
    transition: filter 1s;
}

#photos img:hover {
    filter: none;
}

#bio {
    background: #bbb;
}