blob: d7e92e08eb2b76abed225f63eaaeefdc4490d6d3 (
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
|
.profile {
background-color: rgba(255, 255, 255, 0.05);;
display: flex;
align-items: center;
border-radius: 8px;
max-width: 650px;
margin: 0 auto !important;
}
.profile img {
width: 120px;
height: 120px;
border-radius: 50%;
margin: 16px !important;
}
.profile .info {
margin: 16px;
text-align: left;
}
.profile .pgp-key {
font-family: "Roboto Mono";
font-size: 15px;
color: gray;
}
|