-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofileData.css
More file actions
127 lines (103 loc) · 1.77 KB
/
profileData.css
File metadata and controls
127 lines (103 loc) · 1.77 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
* {
box-sizing: border-box;
}
body {
background-color: rgb(236, 241, 245);
}
.mainContainer {
width: 85%;
margin: auto;
position: relative;
top: 70px;
}
.profile {
background-color: rgb(255, 255, 255);
border-radius: 10px;
position: relative;
}
.coverPic {
max-width: 100%;
height: 80%;
border-radius: 10px 10px 0 0;
}
.profilePic {
width: 150px;
height: 150px;
border: 3px solid white;
border-radius: 50%;
display: inline-block;
/* margin: -80px 0 0 30px; */
margin: -80px 0 0 30px;
}
.NC {
width: 15%;
text-align: center;
display: inline-block;
position: relative;
bottom: 20px;
margin-bottom: 0;
}
.NC p {
padding: 0;
margin: 0;
font-family: 'Poppins', sans-serif;
}
#name {
color: #333;
font-size: 20px;
font-weight: 500;
}
#country {
font-size: 12px;
}
.profile ul {
display: inline-block;
position: relative;
bottom: 30px;
margin-bottom: 0;
}
.profile ul li {
display: inline;
padding: 0 10px 0 0;
font-family: 'Poppins', sans-serif;
}
.profile a {
text-decoration: none;
color: rgb(232, 97, 63);
}
.stats {
width: 30%;
}
.stats {
position: relative;
bottom: 5px;
left: 30px;
display: inline-block;
margin-bottom: 0;
}
.stats table td {
padding-left: 20px;
font-family: 'Poppins', sans-serif;
}
#nums {
text-align: center;
color: rgb(232, 97, 63);
}
@media screen and (max-width: 1100px) {
.stats {
display: block;
/* text-align: center; */
margin: auto;
}
}
@media screen and (max-width: 930px) {
.NC,
.profile ul {
width: 100%;
text-align: center;
}
.stats {
width: 300px;
margin: auto;
}
}