Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
New Profile Page
3
***/
4
.profile-sidebar {
5
  float: left;
6
  width: 300px;
7
  margin-right: 20px;
8
}
9
 
10
.profile-content {
11
  overflow: hidden;
12
}
13
 
14
/* PROFILE SIDEBAR */
15
.profile-sidebar-portlet {
16
  padding: 30px 0 0 0 !important;
17
}
18
 
19
.profile-userpic img {
20
  float: none;
21
  margin: 0 auto;
22
  width: 50%;
23
  height: 50%;
24
  -webkit-border-radius: 50% !important;
25
  -moz-border-radius: 50% !important;
26
  border-radius: 50% !important;
27
}
28
 
29
.profile-usertitle {
30
  text-align: center;
31
  margin-top: 20px;
32
}
33
 
34
.profile-usertitle-name {
35
  color: #5a7391;
36
  font-size: 20px;
37
  font-weight: 600;
38
  margin-bottom: 7px;
39
}
40
 
41
.profile-usertitle-job {
42
  text-transform: uppercase;
43
  color: #5b9bd1;
44
  font-size: 13px;
45
  font-weight: 800;
46
  margin-bottom: 7px;
47
}
48
 
49
.profile-userbuttons {
50
  text-align: center;
51
  margin-top: 10px;
52
}
53
 
54
.profile-userbuttons .btn {
55
  margin-right: 5px;
56
}
57
.profile-userbuttons .btn:last-child {
58
  margin-right: 0;
59
}
60
 
61
.profile-userbuttons button {
62
  text-transform: uppercase;
63
  font-size: 11px;
64
  font-weight: 600;
65
  padding: 6px 15px;
66
}
67
 
68
.profile-usermenu {
69
  margin-top: 30px;
70
  padding-bottom: 20px;
71
}
72
 
73
.profile-usermenu ul li {
74
  border-bottom: 1px solid #f0f4f7;
75
}
76
 
77
.profile-usermenu ul li:last-child {
78
  border-bottom: none;
79
}
80
 
81
.profile-usermenu ul li a {
82
  color: #93a3b5;
83
  font-size: 16px;
84
  font-weight: 400;
85
}
86
 
87
.profile-usermenu ul li a i {
88
  margin-right: 8px;
89
  font-size: 16px;
90
}
91
 
92
.profile-usermenu ul li a:hover {
93
  background-color: #fafcfd;
94
  color: #5b9bd1;
95
}
96
 
97
.profile-usermenu ul li.active a {
98
  color: #5b9bd1;
99
  background-color: #f6f9fb;
100
  border-left: 2px solid #5b9bd1;
101
  margin-left: -2px;
102
}
103
 
104
.profile-stat {
105
  padding-bottom: 20px;
106
  border-bottom: 1px solid #f0f4f7;
107
}
108
 
109
.profile-stat-title {
110
  color: #7f90a4;
111
  font-size: 25px;
112
  text-align: center;
113
}
114
 
115
.profile-stat-text {
116
  color: #5b9bd1;
117
  font-size: 11px;
118
  font-weight: 800;
119
  text-align: center;
120
}
121
 
122
.profile-desc-title {
123
  color: #7f90a4;
124
  font-size: 17px;
125
  font-weight: 600;
126
}
127
 
128
.profile-desc-text {
129
  color: #7e8c9e;
130
  font-size: 14px;
131
}
132
 
133
.profile-desc-link i {
134
  width: 22px;
135
  font-size: 19px;
136
  color: #abb6c4;
137
  margin-right: 5px;
138
}
139
 
140
.profile-desc-link a {
141
  font-size: 14px;
142
  font-weight: 600;
143
  color: #5b9bd1;
144
}
145
 
146
/* END PROFILE SIDEBAR */
147
/* RESPONSIVE MODE */
148
@media (max-width: 991px) {
149
  /* 991px */
150
  /* 991px */
151
  .profile-sidebar {
152
    float: none;
153
    width: 100% !important;
154
    margin: 0;
155
  }
156
 
157
  .profile-sidebar > .portlet {
158
    margin-bottom: 20px;
159
  }
160
 
161
  .profile-content {
162
    overflow: visible;
163
  }
164
}