blob: 7d58e783a921cfd9783ab05ea3b5704babcf90b7 (
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
|
.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;
}
#changing-passwd {
text-transform: capitalize;
white-space: nowrap;
}
|