forked from royboy789/Angular-Wordpress-Theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
more-style.css
executable file
·222 lines (206 loc) · 4.42 KB
/
more-style.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/** LESS MIX-INS **/
/** SITE WIDE **/
body {
margin: 0;
padding: 0;
background: #2F9CCD;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 0;
padding: 0;
}
/** HEADER **/
header {
padding: 20px 0;
color: #FFF;
background: #63b6db;
/* Old browsers */
background: -moz-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #63b6db), color-stop(100%, #309dcf));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* IE10+ */
background: linear-gradient(to bottom, #63b6db 0%, #309dcf 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b6db', endColorstr='#309dcf', GradientType=0);
/* IE6-9 */
}
header a {
color: #e7e7e7;
text-decoration: none;
}
header a:hover {
color: #FFF;
}
header h1 {
margin: 0;
}
header h1 a {
color: #FFF;
}
header h1 a:hover {
color: #FFF;
text-decoration: none;
}
header span {
display: block;
font-size: 14px;
padding: 20px 0;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav ul li {
display: inline-block;
}
nav ul li a {
padding: 0 15px;
text-transform: uppercase;
font-size: 18px;
}
nav ul li a:hover {
text-decoration: none;
}
nav ul li:first-child a {
padding-left: 0;
}
nav ul li:last-child a {
padding-right: 0;
}
nav ul li.active a {
color: #FFF;
}
/** CONTENT **/
.content-wrapper {
box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
-o-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
-ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
padding: 20px 0;
background: #FFF;
}
/** PROJECTS ROW **/
article.projects {
padding: 10px 0;
}
article.projects span.date {
display: block;
font-size: 14px;
font-style: italic;
color: #05057c;
}
article.projects a {
line-height: 20px;
}
article.projects a.title {
color: #05057c;
display: block;
font-size: 20px;
}
article.projects p {
padding-right: 20px;
}
article.projects div.edit {
display: inline-block;
padding: 0 0 0 5px;
}
/** SAVE MODAL **/
div#save {
padding: 20px;
}
div#save form {
width: 100%;
}
div#save form input,
div#save form textarea,
div#save form button {
width: 90%;
display: block;
margin: 0 auto;
}
div#save form input[type="submit"],
div#save form button {
padding: 10px;
margin: 10px auto;
}
div#save form textarea {
height: 400px;
}
div#save form span.mceEditor {
width: 93%;
padding: 4px 6px;
display: block;
margin: 0 auto;
position: relative;
}
div#save form span.mceEditor table {
width: 100%;
}
/** SIDEBAR **/
div.sidebar section {
margin-bottom: 40px;
padding: 10px 0;
}
div.sidebar section:first-child {
padding-top: 0;
}
div.sidebar section h4 {
text-transform: uppercase;
margin-bottom: 10px;
}
div.sidebar section form#comment-form span.help-block {
font-style: italic;
color: red;
font-size: 10px;
}
/** COMMENTS **/
article.comment span.author {
font-size: 12px;
font-style: italic;
font-weight: bold;
text-transform: uppercase;
}
article.comment blockquote {
display: block;
padding: 10px 0 10px 20px;
margin: 10px 0;
}
/** FOOTER **/
footer {
box-shadow: inset 0px 10px 20px rgba(0, 0, 0, 0.4);
-moz-box-shadow: inset 0px 10px 20px rgba(0, 0, 0, 0.4);
-webkit-box-shadow: inset 0px 10px 20px rgba(0, 0, 0, 0.4);
-o-box-shadow: inset 0px 10px 20px rgba(0, 0, 0, 0.4);
-ms-box-shadow: inset 0px 10px 20px rgba(0, 0, 0, 0.4);
padding: 20px 0;
color: #FFF;
background: #63b6db;
/* Old browsers */
background: -moz-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #63b6db), color-stop(100%, #309dcf));
/* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* Opera 11.10+ */
background: -ms-linear-gradient(top, #63b6db 0%, #309dcf 100%);
/* IE10+ */
background: linear-gradient(to bottom, #63b6db 0%, #309dcf 100%);
/* W3C */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#63b6db', endColorstr='#309dcf', GradientType=0);
/* IE6-9 */
}