| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .User {
- .profile-pic {
- width: 200px;
- height: 200px;
- float: left;
- margin-right: 50px;
-
- img { width: 100%; }
- }
-
- .profile-info {
- display: flex;
-
- flex-direction: column;
- justify-content: space-around;
-
- h3 { margin-bottom: 30px; }
-
- .social-columns {
- display: flex;
- flex-wrap: wrap;
-
- & > h4 { margin: 20px; }
-
- .fa {
- margin-right: 20px;
- width: 20px;
- }
- }
-
- .actions {
- text-align: right;
- }
-
-
- .pt-label > input.pt-input {
- margin-left: 20px;
- }
- }
- }
|