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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
|
/*** USER PROFILE PAGE ***/
.user-info-content img{
max-width: 120px;
}
.u-main{
/*word-break: break-all; */
background-color: #f9f9f9;
border-radius: 3px;
box-shadow: 2px 4px 5px 0 rgba(0,0,0,0.1);
text-align: left;
font-family: 'Roboto', sans-serif;
}
.u-title h1{
text-align: center;
font-size: 2em;
color: #404040;
}
.u-main h2{
margin: 0;
/* top, right, bot, left */
padding: 10px 0 10px 0;
font-style: normal;
font-family: 'Roboto', sans-serif;
color: #6b6b6b;
font-size: 1.8em;
}
.u-main h3{
color: #545454;
font-size: 1.3em;
}
.u-main h4{
color: #8d8d8d;
font-size: 1em;
margin-bottom: 30px;
}
.u-main h5{
color: #8d8d8d;
font-size: 1em;
margin: 0;
padding: 8px;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
}
.u-main .u-name-header{
text-align: left;
border-bottom: 1px solid #ededed;
}
.u-aside{
background-color: #eeefef;
}
.u-main .img-circle{
border: 8px solid white;
box-shadow: 0 0 10px 3px rgba(45, 45, 45, 0.1);
}
.u-aside{
/* top, right, bot, left */
padding: 15px 0 15px 0;
}
/* Nav Options */
.u-main nav button{
padding: 0;
margin: 0;
width: 100%;
border: none;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
cursor: pointer;
}
.u-main nav button{
text-align: right;
background-color: #e8e8e8;
border-bottom: 1px solid #dadbda;
border-top: 1px solid #dadbda;
}
.u-main nav .nav-o .nav-o-container{
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
border-right: 8px solid #6e6e6e;
}
/* Nav hover styles */
nav .nav-o:hover {
background-color: #606060;
color: #dcdcdc;
}
nav .nav-o:hover h5{
color: #dcdcdc;
}
nav .nav-o:hover .nav-o-container{
border-right: 8px solid rgba(245, 132, 137, 1);
}
/* Page Content */
.u-pages section{
padding: 30px 0 30px 0;
}
.u-pages h4{
color: #49c7b1;
font-size: 1.5em;
padding: 0;
margin: 0;
}
.u-pages hr{
border-top: 1px solid #cbcbcb;
}
.u-pages h5{
padding: 0;
font-size: 1.1em;
font-style: italic;
margin: 10px 0 10px 0;
}
.u-pages .u-profile p{
padding: 0;
margin: 0;
color: #7b7b7b;
}
.u-pages .u-profile em{
font-weight: bolder;
color: #737373;
}
/* Inbox */
.u-table-row {
display:table-row;
cursor: pointer;
}
.u-table tbody tr:hover{
background-color: #ededed;
}
/* Inbox Popups */
.u-main .modal-content{
padding: 0 20px 0 20px;
}
/* Inbox paging */
.u-pagination{
text-align: center;
}
.u-change-page{
display: inline;
cursor: pointer;
}
/*** USER PROFILE PAGE END ***/
|