| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- .User {
- display: flex;
- flex-direction: row;
- align-content: flex-start;
- justify-content: flex-start;
-
- .profile-pic {
- width: 200px;
- height: 200px;
- }
-
- .profile-info {
- display: flex;
- margin-left: 50px;
- 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;
- }
- }
-
-
- .pt-label > input.pt-input {
- margin-left: 20px;
- }
- }
- }
|