profile.css
2.48 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
132
133
134
/* Cubic Bezier Transition */
/***
New Profile Page
***/
.profile-sidebar {
float: left;
width: 300px;
margin-right: 20px; }
.profile-content {
overflow: hidden; }
/* PROFILE SIDEBAR */
.profile-sidebar-portlet {
padding: 30px 0 0 0 !important; }
.profile-userpic img {
float: none;
margin: 0 auto;
width: 50%;
height: 50%;
-webkit-border-radius: 50% !important;
-moz-border-radius: 50% !important;
border-radius: 50% !important; }
.profile-usertitle {
text-align: center;
margin-top: 20px; }
.profile-usertitle-name {
color: #5a7391;
font-size: 20px;
font-weight: 600;
margin-bottom: 7px; }
.profile-usertitle-job {
text-transform: uppercase;
color: #5b9bd1;
font-size: 13px;
font-weight: 800;
margin-bottom: 7px; }
.profile-userbuttons {
text-align: center;
margin-top: 10px; }
.profile-userbuttons .btn {
margin-right: 5px; }
.profile-userbuttons .btn:last-child {
margin-right: 0; }
.profile-userbuttons button {
text-transform: uppercase;
font-size: 11px;
font-weight: 600;
padding: 6px 15px; }
.profile-usermenu {
margin-top: 30px;
padding-bottom: 20px; }
.profile-usermenu ul li {
border-bottom: 1px solid #f0f4f7; }
.profile-usermenu ul li:last-child {
border-bottom: none; }
.profile-usermenu ul li a {
color: #93a3b5;
font-size: 16px;
font-weight: 400; }
.profile-usermenu ul li a i {
margin-right: 8px;
font-size: 16px; }
.profile-usermenu ul li a:hover {
background-color: #fafcfd;
color: #5b9bd1; }
.profile-usermenu ul li.active a {
color: #5b9bd1;
background-color: #f6f9fb;
border-left: 2px solid #5b9bd1;
margin-left: -2px; }
.profile-stat {
padding-bottom: 20px;
border-bottom: 1px solid #f0f4f7; }
.profile-stat-title {
color: #7f90a4;
font-size: 25px;
text-align: center; }
.profile-stat-text {
color: #5b9bd1;
font-size: 11px;
font-weight: 800;
text-align: center; }
.profile-desc-title {
color: #7f90a4;
font-size: 17px;
font-weight: 600; }
.profile-desc-text {
color: #7e8c9e;
font-size: 14px; }
.profile-desc-link i {
width: 22px;
font-size: 19px;
color: #abb6c4;
margin-right: 5px; }
.profile-desc-link a {
font-size: 14px;
font-weight: 600;
color: #5b9bd1; }
/* END PROFILE SIDEBAR */
/* RESPONSIVE MODE */
@media (max-width: 991px) {
/* 991px */
/* 991px */
.profile-sidebar {
float: none;
width: 100% !important;
margin: 0; }
.profile-sidebar > .portlet {
margin-bottom: 20px; }
.profile-content {
overflow: visible; } }