mirror of
https://github.com/RetroShare/RSNewWebUI.git
synced 2026-09-14 11:05:47 +05:00
35 lines
533 B
CSS
35 lines
533 B
CSS
.friend {
|
|
color: #444;
|
|
font-size: 1.2em;
|
|
margin: 1em;
|
|
padding: 20px;
|
|
border-bottom: 1px solid #aaa;
|
|
border-radius: 20px;
|
|
}
|
|
.friend i {
|
|
float: left;
|
|
padding: 0 10px;
|
|
cursor: pointer;
|
|
}
|
|
.friend h4 {
|
|
margin-bottom: 5px;
|
|
}
|
|
.friend p {
|
|
margin: 0;
|
|
}
|
|
.friend button {
|
|
font-size: 0.9em;
|
|
}
|
|
|
|
.friend .location {
|
|
display: grid;
|
|
grid-template-columns: auto auto;
|
|
justify-content: start;
|
|
}
|
|
|
|
.friend .fa-times-circle {
|
|
color: #bd0909;
|
|
}.friend .fa-check-circle {
|
|
color: green;
|
|
}
|