RSNewWebUI/webui-src/app/network/network.css
Avinash Kumar d3eb8d6d91
fix issue #22 (#23)
* fix checkout alignmnet

* fixed create identity issue

* added logic for edit identity as well as create identity

* final changes

* UX changes

* minor fixes

* Signed Create identity is working now

* minor changes

* friend node profile pic is aligned now

* People->Edit && create identity popup responsive

* updated & refactor code

* changes added

* Update people_ownids.js

* Update people_util.js
2021-04-15 23:39:25 +05:30

49 lines
705 B
CSS

.friend {
color: #444;
font-size: 1.2em;
margin: 1em;
padding: 20px;
border: 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.hidden {
display: none;
}
.friend .brief-info.online {
color: green;
}
.friend .location {
margin: 5px;
border-top: 1px solid #bbb;
display: grid;
grid-template-columns: auto auto;
justify-content: start;
}
.friend .brief-info {
display: flex;
align-items: center;
justify-self: start;
}
.friend .fa-times-circle {
color: #555;
}
.friend .fa-check-circle {
color: green;
}