Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

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