-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.css
157 lines (133 loc) · 3.08 KB
/
user.css
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
body{margin-top:20px;}
/*-------- 27. My account style ---------*/
.myaccount-tab-menu {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
}
.myaccount-tab-menu a {
border: 1px solid #ccc;
border-bottom: none;
font-weight: 600;
font-size: 13px;
display: block;
padding: 10px 15px;
text-transform: uppercase;
}
.myaccount-tab-menu a:last-child {
border-bottom: 1px solid #ccc;
}
.myaccount-tab-menu a:hover, .myaccount-tab-menu a.active {
background-color: #ff6e21;
border-color: #ff6e21;
color: #ffffff;
}
.myaccount-tab-menu a i.fa {
font-size: 14px;
text-align: center;
width: 25px;
}
@media only screen and (max-width: 767px) {
#myaccountContent {
margin-top: 30px;
}
}
.myaccount-content {
border: 1px solid #eeeeee;
padding: 30px;
}
@media only screen and (max-width: 767px) {
.myaccount-content {
padding: 20px 15px;
}
}
.myaccount-content form {
margin-top: -20px;
}
.myaccount-content h3 {
font-size: 20px;
border-bottom: 1px dashed #ccc;
padding-bottom: 10px;
margin-bottom: 25px;
font-weight: 600;
}
.myaccount-content .welcome a:hover {
color: #ff6e21;
}
.myaccount-content .welcome strong {
font-weight: 600;
color: #ff6e21;
}
.myaccount-content fieldset {
margin-top: 20px;
}
.myaccount-content fieldset legend {
font-size: 16px;
margin-bottom: 20px;
font-weight: 600;
padding-bottom: 10px;
border-bottom: 1px solid #ccc;
}
.myaccount-content .account-details-form {
margin-top: 50px;
}
.myaccount-content .account-details-form .single-input-item {
margin-bottom: 20px;
}
.myaccount-content .account-details-form .single-input-item label {
font-size: 14px;
text-transform: capitalize;
display: block;
margin: 0 0 5px;
}
.myaccount-content .account-details-form .single-input-item input {
border: 1px solid #e8e8e8;
height: 50px;
background-color: transparent;
padding: 2px 20px;
color: #1f2226;
font-size: 13px;
}
.myaccount-content .account-details-form .single-input-item input:focus {
border: 1px solid #343538;
}
.myaccount-content .account-details-form .single-input-item button {
border: none;
background-color: #ff6e21;
text-transform: uppercase;
font-weight: 600;
padding: 9px 25px;
color: #fff;
font-size: 13px;
}
.myaccount-content .account-details-form .single-input-item button:hover {
background-color: #1f2226;
}
.myaccount-table {
white-space: nowrap;
font-size: 14px;
}
.myaccount-table table th,
.myaccount-table .table th {
padding: 10px;
font-weight: 600;
background-color: #f8f8f8;
border-color: #ccc;
border-bottom: 0;
color: #1f2226;
}
.myaccount-table table td,
.myaccount-table .table td {
padding: 10px;
vertical-align: middle;
border-color: #ccc;
}
.saved-message {
background-color: #fff;
border-top: 3px solid #ff6e21;
font-size: 14px;
padding: 20px 0;
color: #333;
}