-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.css
More file actions
131 lines (110 loc) · 2.19 KB
/
profile.css
File metadata and controls
131 lines (110 loc) · 2.19 KB
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
130
131
/* profile */
.profile {
flex: 0.5;
border-right: 1px solid var(--twitter-background);
overflow-y: scroll;
}
.profile__header {
display: flex;
align-items: center;
position: sticky;
top: 0;
background-color: white;
z-index: 100;
border: 1px solid var(--twitter-background);
padding: 15px 15px 5px 15px;
}
.profile__header h2 {
font-size: 20px;
font-weight: 800;
}
.profile::-webkit-scrollbar {
display: none;
}
.profile {
-ms-overflow-style: none;
scrollbar-width: none;
}
.profile__header__container {
margin-left: 40px;
line-height: 24px;
}
.profile__header__container__subheading {
font-size: 13px;
color: rgb(83, 100, 113);
font-weight: 400;
}
/* Cover box */
.coverBox {
font-family: "Poppins", sans-serif;
position: relative;
}
.coverbox__coverimage {
height: 200px;
width: 620px;
}
.coverbox__profileimage {
border-radius: 50%;
height: 130px;
position: absolute;
left: 3%;
top: 55%;
border: 4px solid #FFFFFF;
}
.coverBox__editButton {
border: 1px solid #CFD9DE;
background-color: #FFFFFF;
color: black;
font-weight: 600;
font-size: 14px;
border-radius: 30px;
width: 110px;
height: 35px;
margin-top: 7px;
margin-left: 80%;
cursor: pointer;
}
.profile__title {
margin-top: 20px;
margin-left: 20px;
line-height: 24px;
}
.profile__title span {
color: #536471;
font-size: 14px;
}
.profile__bio {
margin-left: 20px;
margin-top: 10px;
}
.profile__bio span {
font-size: 14px;
}
.profile__bio__subtext {
margin-top: 10px;
color: #536471;
}
.profile__bio__following {
margin-top: 10px;
}
.profile__sectionHeader {
margin: 20px 60px 0px 60px;
display: flex;
justify-content: space-between;
color: #536471;
font-weight: 600;
}
.profile__sectionHeader__box {
padding: 0 0 10px;
}
.profile__sectionHeader .active {
color: black;
border-bottom: 4px solid var(--twitter-color);
}
.line {
background-color: #eaeaea;
height: 1px;
}
.profile_tweet {
padding-top: 0px;
}