Project

General

Profile

1
form {
2
  font-family: "Roboto", sans-serif;
3
}
4

    
5
form .connected {
6
  color: rgba(var(--text-color-rgb), 0.5);
7
}
8

    
9
form .image {
10
  position: relative;
11
  width: 120px;
12
  height: 120px;
13
}
14

    
15
form .image icon {
16
  position: absolute;
17
  top: 100%;
18
  left: 50%;
19
  transform: translate(-50%, -50%);
20
}
21

    
22
form .image img {
23
  box-shadow: 0 3px 6px #00000029;
24
  border-radius: 50%;
25
  margin-bottom: 10px;
26
  width: 120px;
27
  height: 120px;
28
  object-fit: cover;
29
}
30

    
(1-1/3)