-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofileStyle.css
executable file
·129 lines (129 loc) · 1.93 KB
/
profileStyle.css
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
.containerProfile{
width: 60vw;
margin: 0 auto;
margin-top: 60px;
background: white;
min-height: 100vw;
display: flex;
flex-direction: row;
align-items: flex-start;
}
.profilePicPart{
width: 35%;
height: 100vw;
display: flex;
flex-direction: column;
align-items: center;
border-right: 1px solid black;
color: #386496;
}
.profilePicPart img{
width: 90%;
margin: 10px auto;
border: 1px solid black;
border-radius: 50%;
max-height: 500px;
}
.profilePicPart form{
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
}
.profilePicPart button{
align-self: center;
background-color: #386496;
border-radius: 4px;
color: #0f0;
font-size: 1em;
height: 40px;
width: 80%;
margin: 10px 0;
margin-right: 10px;
border: 0px solid;
cursor: pointer;
}
#profilePicLink{
position: relative;
left: -5px;
height: 30px;
font-size: 1em;
padding: 0 0;
width: 80%;
}
.categoryText{
font-size: 2em;
color: blue;
}
.fullName{
font-size: 1.8em;
margin: 10px 0;
}
.follow-ing{
font-size: 1.5em;
margin: 10px 0;
}
#follower{
margin: 10px;
}
#following{
margin: 10px;
}
#followerCount{
margin-left: 5px;
padding: 3px;
color: #0f0;
border: 1px solid #386496;
}
#followingCount{
margin-left: 5px;
padding: 3px;
color: #0f0;
border: 1px solid #386496;
}
#postCount{
margin-left: 5px;
padding: 3px;
color: #0f0;
border: 1px solid #386496;
}
.numberPosts{
margin: 10px 0;
font-size: 1.5em;
}
.rightSideArea{
width: 65%;
height: 100%;
display: flex;
flex-direction: column;
align-items: flex-start;
color: #386496;
padding: 30px;
}
.rightSideArea p{
font-size: 2em;
}
.rightSideArea form{
margin: 0;
padding: 0;
display:flex;
flex-direction: column;
align-items: flex-start;
width: 100%;
}
.rightSideArea form button{
width: 30%;
}
#submitBio{
margin-left: auto;
}
#bioCont{
margin: 10px 0;
width: 100%;
min-height: 100px;
}
#bioContHide{
margin: 10px 0;
width: 30%;
min-height: 100px;
}