├── README
├── _www
├── css
│ ├── reset.css
│ ├── skin.css
│ └── style.css
├── favicon.ico
└── index.html
├── _xtensions
├── ie
│ ├── ie.css
│ └── pie
│ │ ├── PIE.js
│ │ ├── license.txt
│ │ └── readme.txt
├── scripts
│ └── flexslider
│ │ ├── LICENSE.txt
│ │ ├── demo.html
│ │ ├── flexslider.css
│ │ ├── jquery.flexslider-min.js
│ │ └── readme.txt
└── snippets
│ ├── dropdown_menu.txt
│ ├── responsive_navigation
│ ├── footer_anchor.html
│ ├── jquery.mobilemenu.min.js
│ ├── select_menu.html
│ ├── side_flyout.html
│ └── toggle_menu.html
│ └── sticky_footer.txt
├── aim
└── skin.css
├── bigcoloridea
├── Blue
│ └── skin.css
├── Dark-Blue
│ └── skin.css
├── Orange
│ └── skin.css
├── Pink
│ └── skin.css
├── Purple
│ └── skin.css
└── Red
│ └── skin.css
├── blackberry
└── skin.css
├── fresh
└── skin.css
├── fruitjuice
└── skin.css
├── glimpse
└── skin.css
├── humble
└── skin.css
├── illusion
└── skin.css
├── isimple
└── skin.css
├── liner
└── skin.css
├── maple
└── skin.css
├── mentol
└── skin.css
├── moderndark
├── Blue
│ └── skin.css
├── Green
│ └── skin.css
├── Orange
│ └── skin.css
├── Pink
│ └── skin.css
├── Purple
│ └── skin.css
├── Red
│ └── skin.css
└── Yellow
│ └── skin.css
├── nightroad
└── skin.css
├── passion
└── skin.css
├── simplesoft
└── skin.css
├── simpleswiss
└── skin.css
├── simploid
└── skin.css
├── snobbish
└── skin.css
├── solution
└── skin.css
├── stylus
└── skin.css
└── teawithmilk
└── skin.css
/README:
--------------------------------------------------------------------------------
1 | "Simpliste" is a simple responsive HTML5 template
2 |
3 | http://cssr.ru/simpliste/
4 |
5 | Copyright (c) 2012 Renat Rafikov
6 |
7 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
8 |
9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
10 |
11 |
12 | How to use:
13 |
14 | 1. Choose a skin
15 | 2. Copy "skin.css" into "_www/css" folder
16 | 3. Open "index.html"
--------------------------------------------------------------------------------
/_www/css/reset.css:
--------------------------------------------------------------------------------
1 | /* CSS reset. Based on HTML5 boilerplate reset http://html5boilerplate.com/ */
2 | article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display:block; }
3 | audio[controls], canvas, video { display:inline-block; *display:inline; *zoom:1; }
4 | html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
5 | body { margin: 0; font-size: 14px; line-height: 1.4; }
6 | body, button, input, select, textarea { font-family:sans-serif; }
7 | a:focus { outline:thin dotted; }
8 | a:hover, a:active { outline:0; }
9 | abbr[title] { border-bottom:1px dotted; }
10 | b, strong { font-weight:bold; }
11 | blockquote { margin:1em 40px; }
12 | dfn { font-style:italic; }
13 | hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }
14 | ins { background:#ff9; color:#000; text-decoration:none; }
15 | mark { background:#ff0; color:#000; font-style:italic; font-weight:bold; }
16 | pre, code, kbd, samp { font-family:monospace, monospace; _font-family:'courier new', monospace; font-size:1em; }
17 | pre { white-space:pre; white-space:pre-wrap; word-wrap:break-word; }
18 | q { quotes:none; }
19 | q:before, q:after { content:""; content:none; }
20 | small { font-size:85%; }
21 | sub, sup { font-size:75%; line-height:0; position:relative; vertical-align:baseline; }
22 | sup { top:-0.5em; }
23 | sub { bottom:-0.25em; }
24 | ul, ol { margin:1em 0; padding:0 0 0 2em; }
25 | dd { margin:0 0 0 40px; }
26 | nav ul, nav ol { list-style:none; margin:0; padding:0; }
27 | img { border:0; -ms-interpolation-mode:bicubic; }
28 | svg:not(:root) { overflow:hidden;}
29 | figure { margin:0; }
30 | form { margin:0; }
31 | fieldset { border:0; margin:0; padding:0; }
32 | legend { border:0; *margin-left:-7px; padding:0; }
33 | label { cursor:pointer; }
34 | button, input, select, textarea { font-size:100%; margin:0; vertical-align:baseline; *vertical-align:middle; }
35 | button, input { line-height:normal; *overflow:visible; }
36 | button, input[type="button"], input[type="reset"], input[type="submit"] { cursor:pointer; -webkit-appearance:button; }
37 | input[type="checkbox"], input[type="radio"] { box-sizing:border-box; }
38 | input[type="search"] { -moz-box-sizing:content-box; -webkit-box-sizing:content-box; box-sizing:content-box; }
39 | button::-moz-focus-inner, input::-moz-focus-inner { border:0; padding:0; }
40 | textarea { overflow:auto; vertical-align:top; }
41 | input:valid, textarea:valid { }
42 | input:invalid, textarea:invalid { background-color:#f0dddd; }
43 | table { border-collapse:collapse; border-spacing:0; }
44 | .hidden { display:none; visibility:hidden; }
45 | .clearfix:before, .clearfix:after { content:""; display:table; }
46 | .clearfix:after { clear:both; }
47 | .clearfix { zoom:1; }
48 | /* End CSS reset */
--------------------------------------------------------------------------------
/_www/css/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Simple" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#333;
5 | }
6 |
7 | a { color:#004dd9; }
8 | a:hover { color:#ea0000; }
9 | a:visited { color:#551a8b; }
10 |
11 | ul li, ol li {
12 | padding:0 0 0.4em 0;
13 | }
14 |
15 |
16 | .container {
17 | max-width:1300px;
18 | margin:0 auto;
19 | }
20 |
21 | .header {
22 | margin:1px 0 3em 0;
23 | padding:2em 2% 0 2%;
24 | }
25 |
26 | .logo {
27 | float:left;
28 | display:inline-block;
29 | padding:0 0 1em;
30 | border-bottom:1px solid #000;
31 | font-size:18px;
32 | color:#ea0000;
33 | }
34 |
35 | .menu_main {
36 | width:50%;
37 | float:right;
38 | text-align:right;
39 | margin:0.3em 0 0 0;
40 | }
41 | .menu_main a,
42 | .menu_main a:visited {
43 | }
44 | .menu_main a:hover,
45 | .menu_main a:hover:visited {
46 | }
47 | .menu_main li {
48 | display:inline-block;
49 | margin:0 0 0 7px;
50 | }
51 | .menu_main li.active,
52 | .menu_main li.active a {
53 | color:#000;
54 | text-decoration:none;
55 | cursor:default;
56 | }
57 |
58 |
59 | .info {
60 | padding:0 0 1em 2%;
61 | }
62 |
63 | .hero {}
64 | .hero h1 {
65 | font-size:26px;
66 | font-family:georgia, serif;
67 | font-style:italic;
68 | color:#EA0000;
69 | }
70 |
71 | .article {}
72 |
73 | .footer {
74 | border-top:1px solid #666;
75 | padding:2em 2% 3em 2%;
76 | color:#666;
77 | }
78 |
79 | .copyright {
80 | width:49%;
81 | float:left;
82 | font-family:georgia, serif;
83 | font-style:italic;
84 | }
85 |
86 | .menu_bottom {
87 | width:50%;
88 | float:right;
89 | text-align:right;
90 | margin:0;
91 | padding:0;
92 | }
93 | .menu_bottom a,
94 | .menu_bottom a:visited {
95 | }
96 | .menu_bottom a:hover,
97 | .menu_bottom a:hover:visited {
98 | }
99 | .menu_bottom li {
100 | display:inline-block;
101 | margin:0 0 0 7px;
102 | }
103 | .menu_bottom li.active,
104 | .menu_bottom li.active a {
105 | color:#666;
106 | text-decoration:none;
107 | cursor:default;
108 | }
109 |
110 | h1, h2 {
111 | font-weight:normal;
112 | color:#000;
113 | }
114 | h1 {
115 | font-size:22px;
116 | }
117 | h3, h4, h5, h6 {
118 | font-weight:bold;
119 | color:#000;
120 | }
121 |
122 | .form label {
123 | display:inline-block;
124 | padding:0 0 4px 0;
125 | }
126 |
127 | a.button,
128 | .button {
129 | border:1px solid #d00303;
130 | text-align:center;
131 | text-decoration:none;
132 | -webkit-border-radius:4px;
133 | -moz-border-radius:4px;
134 | border-radius:4px;
135 | -webkit-box-shadow:#000 0px 0px 1px;
136 | -moz-box-shadow:#000 0px 0px 1px;
137 | box-shadow:#000 0px 0px 1px;
138 | background:#ea0000;
139 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ea0000), to(#d00303));
140 | background:-webkit-linear-gradient(#ea0000, #d00303);
141 | background:-moz-linear-gradient(#ea0000, #d00303);
142 | background:-ms-linear-gradient(#ea0000, #d00303);
143 | background:-o-linear-gradient(#ea0000, #d00303);
144 | background:linear-gradient(#ea0000, #d00303);
145 | color:#fff;
146 | padding:12px 20px;
147 | font-family:verdana, sans-serif;
148 | text-shadow:1px 1px 1px #d03302;
149 | display:inline-block;
150 | }
151 | a.button:hover,
152 | .button:hover {
153 | color:#fff;
154 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#d00303), to(#ea0000));
155 | background:-webkit-linear-gradient(#d00303, #ea0000);
156 | background:-moz-linear-gradient(#d00303, #ea0000);
157 | background:-ms-linear-gradient(#d00303, #ea0000);
158 | background:-o-linear-gradient(#d00303, #ea0000);
159 | background:linear-gradient(#d00303, #ea0000);
160 | }
161 | a.button:active,
162 | .button:active {
163 | color:#8c1515;
164 | text-shadow:1px 1px 1px #ffaeae;
165 | -webkit-box-shadow:#a10000 0px -3px 3px inset;
166 | -moz-box-shadow:#a10000 0px -3px 3px inset;
167 | box-shadow:#a10000 0px -3px 3px inset;
168 | }
169 |
170 | .table {
171 | width:100%;
172 | }
173 | .table th {
174 | padding:5px 7px;
175 | font-weight:normal;
176 | text-align:left;
177 | font-size:1.2em;
178 | background:#ffffff;
179 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ffffff), to(#F7F7F7));
180 | background:-webkit-linear-gradient(#ffffff, #F7F7F7);
181 | background:-moz-linear-gradient(#ffffff, #F7F7F7);
182 | background:-ms-linear-gradient(#ffffff, #F7F7F7);
183 | background:-o-linear-gradient(#ffffff, #F7F7F7);
184 | background:linear-gradient(#ffffff, #F7F7F7);
185 | }
186 | .table td {
187 | padding:5px 7px;
188 | }
189 | .table tr {
190 | border-bottom:1px solid #ddd;
191 | }
192 | .table tr:last-child {
193 | border:0;
194 | }
195 |
196 | .warning {
197 | border:1px solid #ec252e;
198 | color:#fff;
199 | padding:8px 14px;
200 | background:#EA0000;
201 | -webkit-border-radius:8px;
202 | -moz-border-radius:8px;
203 | border-radius:8px;
204 | }
205 | .success {
206 | border:1px solid #399f16;
207 | color:#fff;
208 | background:#399f16;
209 | padding:8px 14px;
210 | -webkit-border-radius:8px;
211 | -moz-border-radius:8px;
212 | border-radius:8px;
213 | }
214 | .message {
215 | border:1px solid #f1edcf;
216 | color:#000;
217 | background:#fbf8e3;
218 | padding:8px 14px;
219 | -webkit-border-radius:8px;
220 | -moz-border-radius:8px;
221 | border-radius:8px;
222 | }
223 |
224 |
225 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
226 | }
227 |
228 | @media only screen and (max-width:768px) { /* Tablet custom styles */
229 | }
--------------------------------------------------------------------------------
/_www/css/style.css:
--------------------------------------------------------------------------------
1 | /* "Simpliste" template. Renat Rafikov. http://cssr.ru/simpliste/ */
2 |
3 | @import url('reset.css');
4 | @import url('skin.css');
5 |
6 |
7 | /* Columns
8 | -------
9 | .col_33 | .col_33 | .col_33
10 | .clearfix
11 | -------
12 | .col_75 | .col_25
13 | .clearfix
14 | -------
15 | .col_66 | .col_33
16 | .clearfix
17 | -------
18 | .col_50 | .col_50
19 | .clearfix
20 | -------
21 | .col_100
22 | -------
23 | */
24 | .col_25 {
25 | width:23%;
26 | margin:0 2% 0 0;
27 | float:left;
28 | }
29 | .col_33 {
30 | width:31%;
31 | margin:0 2% 0 0;
32 | float:left;
33 | }
34 | .col_50 {
35 | width:48%;
36 | margin:0 2% 0 0;
37 | float:left;
38 | }
39 | .col_66 {
40 | width:64%;
41 | margin:0 2% 0 0;
42 | float:left;
43 | }
44 | .col_75 {
45 | width:73%;
46 | margin:0 2% 0 0;
47 | float:left;
48 | }
49 | .col_100 {
50 | width:98%;
51 | margin:0 2% 0 0;
52 | }
53 |
54 | .col_25.wrap { width:25%; margin:0;}
55 | .col_33.wrap { width:33%; margin:0;}
56 | .col_50.wrap { width:50%; margin:0;}
57 | .col_66.wrap { width:66%; margin:0;}
58 | .col_75.wrap { width:75%; margin:0;}
59 | .col_100.wrap { width:100%; margin:0;}
60 | /* End columns */
61 |
62 |
63 | /* Helper classes */
64 | .center {text-align:center;}
65 | .left {text-align:left;}
66 | .right {text-align:right;}
67 |
68 | .img_floatleft {float:left; margin:0 10px 5px 0;}
69 | .img_floatright {float:right; margin:0 0 5px 10px;}
70 |
71 | .img {max-width:100%;}
72 | /* End helper classes */
73 |
74 | a.button { color:auto; }
75 |
76 | @media only screen and (max-width:480px) { /* Smartphone */
77 | .header {
78 | margin-bottom:0;
79 | }
80 |
81 | .logo{
82 | display:block;
83 | float:none;
84 | text-align:center;
85 | }
86 |
87 | .menu_main {
88 | width:100%;
89 | text-align:center;
90 | float:none;
91 | padding:0;
92 | margin:1em 0 0 0;
93 | }
94 |
95 | .menu_main a {
96 | display:inline-block;
97 | padding:7px;
98 | }
99 |
100 | .copyright {
101 | width:100%;
102 | float:none;
103 | text-align:center;
104 | }
105 |
106 | .footer {
107 | padding-bottom:0;
108 | }
109 |
110 | .menu_bottom {
111 | width:100%;
112 | float:none;
113 | text-align:center;
114 | margin:1em 0 0 0;
115 | padding:0;
116 | }
117 | .menu_bottom a {
118 | display:inline-block;
119 | padding:6px;
120 | }
121 |
122 | .form textarea {
123 | width:100%;
124 | }
125 | .form label {
126 | padding:10px 0 8px 0;
127 | }
128 | }
129 |
130 |
131 | @media only screen and (max-width:768px) { /* Tablet */
132 | .col_25,
133 | .col_33,
134 | .col_66,
135 | .col_50 ,
136 | .col_75 {
137 | width:98%;
138 | float:none;
139 | }
140 |
141 | .form label {
142 | padding:10px 0 8px 0;
143 | }
144 | }
145 |
146 |
147 | @media print { /* Printer */
148 | * { background:transparent !important; color:black !important; text-shadow:none !important; filter:none !important; -ms-filter:none !important; }
149 | a, a:visited { color:#444 !important; text-decoration:underline; }
150 | a[href]:after { content:" (" attr(href) ")"; }
151 | abbr[title]:after { content:" (" attr(title) ")"; }
152 | pre, blockquote { border:1px solid #999; page-break-inside:avoid; }
153 | thead { display:table-header-group; }
154 | tr, img { page-break-inside:avoid; }
155 | img { max-width:100% !important; }
156 | @page { margin:0.5cm; }
157 | p, h2, h3 { orphans:3; widows:3; }
158 | h2, h3{ page-break-after:avoid; }
159 |
160 | .header, .footer, .form {display:none;}
161 | .col_33, .col_66, .col_50 { width:98%; float:none; }
162 | }
--------------------------------------------------------------------------------
/_www/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/rafikov/Simpliste/6e88fa88ea1c8792e00b1b34afdf9db5f1d83588/_www/favicon.ico
--------------------------------------------------------------------------------
/_xtensions/ie/ie.css:
--------------------------------------------------------------------------------
1 | /* Skin styles for IE */
2 |
3 | /*
4 | IE < 8 not supported by Simpliste skins. But you can manually fix some problems using the styles below. Either copy them into your style.css file or make links to ie.css file from your site pages.
5 | "/" is a hack used to apply styles to IE 7 and below.
6 | */
7 |
8 | /* For IE 7 "inline-block" property has to be replaced with "inline" */
9 | .menu_main li,
10 | .menu_bottom li {
11 | /display:inline;
12 | }
13 |
14 | /* If you don't like the way headers' default styles look in IE 7 */
15 | h1,h2,h3,h4,h5,h6 {
16 | /display:block;
17 | /clear:both;
18 | /margin:0.7em 0;
19 | }
20 |
21 | /* End skin styles for IE */
--------------------------------------------------------------------------------
/_xtensions/ie/pie/license.txt:
--------------------------------------------------------------------------------
1 | Copyright 2010 Jason Johnston
CSS3 PIE is licensed under the terms of the Apache License Version 2.0, or
alternatively under the terms of the General Public License (GPL) Version 2.
You may use PIE according to either of these licenses as is most appropriate
for your project on a case-by-case basis.
The terms of each license can be found in the main directory of the PIE source
repository:
Apache License: http://github.com/lojjic/PIE/blob/master/LICENSE-APACHE2.txt
GPL2 License: http://github.com/lojjic/PIE/blob/master/LICENSE-GPL2.txt
--------------------------------------------------------------------------------
/_xtensions/ie/pie/readme.txt:
--------------------------------------------------------------------------------
1 | http://css3pie.com/
PIE script makes IE 6-9 understand some of CSS3 properties:
border-radius
box-shadow
linear-gradient (with -pie- prefix only)
Script requires jQuery http://jquery.com/
To use it copy PIE.js to the javascript files folder, include link to the script in your pages in this way
And invoke the script on elements with CSS3 properties. You can do it by adding special class to every such element (.rounded in example) or by listing existing classes in your javascript block ('.menu_main a, .menu_bottom a')
$(function() {
if (window.PIE) {
$('.rounded').each(function() {
PIE.attach(this);
});
}
});
PS Sometimes you will need to change the "position" property of the elements with PIE applied to "relative", it will help you to avoid some bugs:
.rounded {
position:relative;
}
--------------------------------------------------------------------------------
/_xtensions/scripts/flexslider/LICENSE.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011 Tyler Smith
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/_xtensions/scripts/flexslider/demo.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
17 |
18 |
19 |
26 |
27 |
28 |
29 |
49 |
50 |
51 |
--------------------------------------------------------------------------------
/_xtensions/scripts/flexslider/flexslider.css:
--------------------------------------------------------------------------------
1 | .flexslider {
2 | width:100%;
3 | margin:0;
4 | padding:0;
5 | }
6 |
7 | .flexslider .slides>li {
8 | display:none;
9 | }
10 | .flexslider .slides img {
11 | max-width:100%;
12 | display:block;
13 | }
14 | .flex-pauseplay span {
15 | text-transform:capitalize;
16 | }
17 | .slides:after {
18 | content:".";
19 | display:block;
20 | clear:both;
21 | visibility:hidden;
22 | line-height:0;
23 | height:0;
24 | }
25 |
26 | html[xmlns] .slides {
27 | display:block;
28 | }
29 | * html .slides {
30 | height:1%;
31 | }
32 |
33 | .flexslider {
34 | background:#fff;
35 | border:4px solid #fff;
36 | position:relative;
37 | -webkit-border-radius:5px;
38 | -moz-border-radius:5px;
39 | -o-border-radius:5px;
40 | border-radius:5px;
41 | zoom:1;
42 | }
43 | .flexslider ul {list-style:none; margin:0; padding:0;}
44 | .flexslider .slides {
45 | zoom:1;
46 | }
47 | .flexslider .slides>li {
48 | position:relative;
49 | }
50 | .flex-container {
51 | zoom:1;
52 | position: relative;
53 | }
54 |
55 | /* Caption style */
56 | /* IE rgba() hack */
57 | .flex-caption {
58 | background:none;
59 | -ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
60 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
61 | zoom:1;
62 | }
63 | .flex-caption {
64 | width:96%;
65 | padding:2%;
66 | position:absolute;
67 | left:0;
68 | bottom:0;
69 | background:rgba(0,0,0,.3);
70 | color:#fff;
71 | text-shadow:0 -1px 0 rgba(0,0,0,.3);
72 | font-size:14px;
73 | line-height: 18px;
74 | }
75 |
76 | /* Direction Nav */
77 | .flex-direction-nav li a {
78 | width:52px;
79 | height:50px;
80 | margin:-13px 0 0;
81 | display:block;
82 | background:#d4d4d4;
83 | position:absolute;
84 | top:50%;
85 | cursor:pointer;
86 | text-indent:-9999px;
87 | -webkit-border-radius: 6px;
88 | -moz-border-radius: 6px;
89 | border-radius: 6px;
90 | -webkit-box-shadow:rgba(0,0,0,0.3) 0px 2px 2px;
91 | -moz-box-shadow:rgba(0,0,0,0.3) 0px 2px 2px;
92 | box-shadow:rgba(0,0,0,0.3) 0px 2px 2px;
93 | }
94 | .flex-direction-nav li .next {
95 | right:-21px;
96 | }
97 | .flex-direction-nav li .next:before {
98 | content:"";
99 | position:absolute;
100 | right:15px;
101 | top:8px;
102 | width:0;
103 | height:0;
104 | border-top:18px solid transparent;
105 | border-bottom:18px solid transparent;
106 | border-left:18px solid #6a6a6a;
107 | }
108 | .flex-direction-nav li .next:after {
109 | content:"";
110 | position:absolute;
111 | right:24px;
112 | top:17px;
113 | width:0;
114 | height:0;
115 | border-top:9px solid transparent;
116 | border-bottom:9px solid transparent;
117 | border-left:9px solid #d4d4d4;
118 | }
119 |
120 | .flex-direction-nav li .prev {
121 | left:-20px;
122 | }
123 | .flex-direction-nav li .prev:before {
124 | content:"";
125 | position:absolute;
126 | left:15px;
127 | top:8px;
128 | width: 0;
129 | height: 0;
130 | border-top:18px solid transparent;
131 | border-bottom:18px solid transparent;
132 | border-right:18px solid #6a6a6a;
133 | }
134 | .flex-direction-nav li .prev:after {
135 | content:"";
136 | position:absolute;
137 | left:24px;
138 | top:17px;
139 | width: 0;
140 | height: 0;
141 | border-top:9px solid transparent;
142 | border-bottom:9px solid transparent;
143 | border-right:9px solid #d4d4d4;
144 | }
145 |
146 | .flex-direction-nav li .disabled {
147 | opacity:.3;
148 | filter:alpha(opacity=30);
149 | cursor: default;
150 | }
151 |
152 | /* Control Nav */
153 | .flex-control-nav {
154 | width:100%;
155 | position:absolute;
156 | bottom:-30px;
157 | text-align:center;
158 | }
159 | .flex-control-nav li {
160 | margin:0 0 0 5px;
161 | display:inline-block;
162 | zoom:1;
163 | /display:inline;
164 | }
165 | .flex-control-nav li:first-child {
166 | margin:0;
167 | }
168 | .flex-control-nav li a {
169 | width:12px;
170 | height:12px;
171 | display:block;
172 | background:#ffffff;
173 | cursor:pointer;
174 | text-indent:-9999px;
175 | border:1px solid #bbbbbb;
176 | -webkit-border-radius: 6px;
177 | -moz-border-radius: 6px;
178 | border-radius: 6px;
179 | }
180 | .flex-control-nav li a:hover {
181 | background:#82c5e7;
182 | border:1px solid #82c5e7;
183 | }
184 | .flex-control-nav li a.active {
185 | border:0;
186 | display:block;
187 | background:#289aca;
188 | cursor:default;
189 | border:1px solid #289aca;
190 | }
--------------------------------------------------------------------------------
/_xtensions/scripts/flexslider/jquery.flexslider-min.js:
--------------------------------------------------------------------------------
1 | /*
2 | * jQuery FlexSlider v1.8
3 | * http://flex.madebymufffin.com
4 | * Copyright 2011, Tyler Smith
5 | */
6 | (function(a){a.flexslider=function(c,b){var d=c;d.init=function(){d.vars=a.extend({},a.flexslider.defaults,b);d.data("flexslider",true);d.container=a(".slides",d);d.slides=a(".slides > li",d);d.count=d.slides.length;d.animating=false;d.currentSlide=d.vars.slideToStart;d.animatingTo=d.currentSlide;d.atEnd=(d.currentSlide==0)?true:false;d.eventType=("ontouchstart" in document.documentElement)?"touchstart":"click";d.cloneCount=0;d.cloneOffset=0;d.manualPause=false;d.vertical=(d.vars.slideDirection=="vertical");d.prop=(d.vertical)?"top":"marginLeft";d.args={};d.transitions="webkitTransition" in document.body.style;if(d.transitions){d.prop="-webkit-transform"}if(d.vars.controlsContainer!=""){d.controlsContainer=a(d.vars.controlsContainer).eq(a(".slides").index(d.container));d.containerExists=d.controlsContainer.length>0}if(d.vars.manualControls!=""){d.manualControls=a(d.vars.manualControls,((d.containerExists)?d.controlsContainer:d));d.manualExists=d.manualControls.length>0}if(d.vars.randomize){d.slides.sort(function(){return(Math.round(Math.random())-0.5)});d.container.empty().append(d.slides)}if(d.vars.animation.toLowerCase()=="slide"){if(d.transitions){d.setTransition(0)}d.css({overflow:"hidden"});if(d.vars.animationLoop){d.cloneCount=2;d.cloneOffset=1;d.container.append(d.slides.filter(":first").clone().addClass("clone")).prepend(d.slides.filter(":last").clone().addClass("clone"))}d.newSlides=a(".slides > li",d);var m=(-1*(d.currentSlide+d.cloneOffset));if(d.vertical){d.newSlides.css({display:"block",width:"100%","float":"left"});d.container.height((d.count+d.cloneCount)*200+"%").css("position","absolute").width("100%");setTimeout(function(){d.css({position:"relative"}).height(d.slides.filter(":first").height());d.args[d.prop]=(d.transitions)?"translate3d(0,"+m*d.height()+"px,0)":m*d.height()+"px";d.container.css(d.args)},100)}else{d.args[d.prop]=(d.transitions)?"translate3d("+m*d.width()+"px,0,0)":m*d.width()+"px";d.container.width((d.count+d.cloneCount)*200+"%").css(d.args);setTimeout(function(){d.newSlides.width(d.width()).css({"float":"left",display:"block"})},100)}}else{d.transitions=false;d.slides.css({width:"100%","float":"left",marginRight:"-100%"}).eq(d.currentSlide).fadeIn(d.vars.animationDuration)}if(d.vars.controlNav){if(d.manualExists){d.controlNav=d.manualControls}else{var e=a(' ');var s=1;for(var t=0;t"+s+" ");s++}if(d.containerExists){a(d.controlsContainer).append(e);d.controlNav=a(".flex-control-nav li a",d.controlsContainer)}else{d.append(e);d.controlNav=a(".flex-control-nav li a",d)}}d.controlNav.eq(d.currentSlide).addClass("active");d.controlNav.bind(d.eventType,function(i){i.preventDefault();if(!a(this).hasClass("active")){(d.controlNav.index(a(this))>d.currentSlide)?d.direction="next":d.direction="prev";d.flexAnimate(d.controlNav.index(a(this)),d.vars.pauseOnAction)}})}if(d.vars.directionNav){var v=a('");if(d.containerExists){a(d.controlsContainer).append(v);d.directionNav=a(".flex-direction-nav li a",d.controlsContainer)}else{d.append(v);d.directionNav=a(".flex-direction-nav li a",d)}if(!d.vars.animationLoop){if(d.currentSlide==0){d.directionNav.filter(".prev").addClass("disabled")}else{if(d.currentSlide==d.count-1){d.directionNav.filter(".next").addClass("disabled")}}}d.directionNav.bind(d.eventType,function(i){i.preventDefault();var j=(a(this).hasClass("next"))?d.getTarget("next"):d.getTarget("prev");if(d.canAdvance(j)){d.flexAnimate(j,d.vars.pauseOnAction)}})}if(d.vars.keyboardNav&&a("ul.slides").length==1){function h(i){if(d.animating){return}else{if(i.keyCode!=39&&i.keyCode!=37){return}else{if(i.keyCode==39){var j=d.getTarget("next")}else{if(i.keyCode==37){var j=d.getTarget("prev")}}if(d.canAdvance(j)){d.flexAnimate(j,d.vars.pauseOnAction)}}}}a(document).bind("keyup",h)}if(d.vars.mousewheel){d.mousewheelEvent=(/Firefox/i.test(navigator.userAgent))?"DOMMouseScroll":"mousewheel";d.bind(d.mousewheelEvent,function(y){y.preventDefault();y=y?y:window.event;var i=y.detail?y.detail*-1:y.wheelDelta/40,j=(i<0)?d.getTarget("next"):d.getTarget("prev");if(d.canAdvance(j)){d.flexAnimate(j,d.vars.pauseOnAction)}})}if(d.vars.slideshow){if(d.vars.pauseOnHover&&d.vars.slideshow){d.hover(function(){d.pause()},function(){if(!d.manualPause){d.resume()}})}d.animatedSlides=setInterval(d.animateSlides,d.vars.slideshowSpeed)}if(d.vars.pausePlay){var q=a('
');if(d.containerExists){d.controlsContainer.append(q);d.pausePlay=a(".flex-pauseplay span",d.controlsContainer)}else{d.append(q);d.pausePlay=a(".flex-pauseplay span",d)}var n=(d.vars.slideshow)?"pause":"play";d.pausePlay.addClass(n).text((n=="pause")?d.vars.pauseText:d.vars.playText);d.pausePlay.bind(d.eventType,function(i){i.preventDefault();if(a(this).hasClass("pause")){d.pause();d.manualPause=true}else{d.resume();d.manualPause=false}})}if("ontouchstart" in document.documentElement){var w,u,l,r,o,x,p=false;d.each(function(){if("ontouchstart" in document.documentElement){this.addEventListener("touchstart",g,false)}});function g(i){if(d.animating){i.preventDefault()}else{if(i.touches.length==1){d.pause();r=(d.vertical)?d.height():d.width();x=Number(new Date());l=(d.vertical)?(d.currentSlide+d.cloneOffset)*d.height():(d.currentSlide+d.cloneOffset)*d.width();w=(d.vertical)?i.touches[0].pageY:i.touches[0].pageX;u=(d.vertical)?i.touches[0].pageX:i.touches[0].pageY;d.setTransition(0);this.addEventListener("touchmove",k,false);this.addEventListener("touchend",f,false)}}}function k(i){o=(d.vertical)?w-i.touches[0].pageY:w-i.touches[0].pageX;p=(d.vertical)?(Math.abs(o)0)?(Math.abs(o)/r+2):1)}d.args[d.prop]=(d.vertical)?"translate3d(0,"+(-l-o)+"px,0)":"translate3d("+(-l-o)+"px,0,0)";d.container.css(d.args)}}}function f(j){d.animating=false;if(d.animatingTo==d.currentSlide&&!p&&!(o==null)){var i=(o>0)?d.getTarget("next"):d.getTarget("prev");if(d.canAdvance(i)&&Number(new Date())-x<550&&Math.abs(o)>20||Math.abs(o)>r/2){d.flexAnimate(i,d.vars.pauseOnAction)}else{d.flexAnimate(d.currentSlide,d.vars.pauseOnAction)}}this.removeEventListener("touchmove",k,false);this.removeEventListener("touchend",f,false);w=null;u=null;o=null;l=null}}if(d.vars.animation.toLowerCase()=="slide"){a(window).resize(function(){if(!d.animating){if(d.vertical){d.height(d.slides.filter(":first").height());d.args[d.prop]=(-1*(d.currentSlide+d.cloneOffset))*d.slides.filter(":first").height()+"px";if(d.transitions){d.setTransition(0);d.args[d.prop]=(d.vertical)?"translate3d(0,"+d.args[d.prop]+",0)":"translate3d("+d.args[d.prop]+",0,0)"}d.container.css(d.args)}else{d.newSlides.width(d.width());d.args[d.prop]=(-1*(d.currentSlide+d.cloneOffset))*d.width()+"px";if(d.transitions){d.setTransition(0);d.args[d.prop]=(d.vertical)?"translate3d(0,"+d.args[d.prop]+",0)":"translate3d("+d.args[d.prop]+",0,0)"}d.container.css(d.args)}}})}d.vars.start(d)};d.flexAnimate=function(g,f){if(!d.animating){d.animating=true;d.animatingTo=g;d.vars.before(d);if(f){d.pause()}if(d.vars.controlNav){d.controlNav.removeClass("active").eq(g).addClass("active")}d.atEnd=(g==0||g==d.count-1)?true:false;if(!d.vars.animationLoop&&d.vars.directionNav){if(g==0){d.directionNav.removeClass("disabled").filter(".prev").addClass("disabled")}else{if(g==d.count-1){d.directionNav.removeClass("disabled").filter(".next").addClass("disabled")}else{d.directionNav.removeClass("disabled")}}}if(!d.vars.animationLoop&&g==d.count-1){d.pause();d.vars.end(d)}if(d.vars.animation.toLowerCase()=="slide"){var e=(d.vertical)?d.slides.filter(":first").height():d.slides.filter(":first").width();if(d.currentSlide==0&&g==d.count-1&&d.vars.animationLoop&&d.direction!="next"){d.slideString="0px"}else{if(d.currentSlide==d.count-1&&g==0&&d.vars.animationLoop&&d.direction!="prev"){d.slideString=(-1*(d.count+1))*e+"px"}else{d.slideString=(-1*(g+d.cloneOffset))*e+"px"}}d.args[d.prop]=d.slideString;if(d.transitions){d.setTransition(d.vars.animationDuration);d.args[d.prop]=(d.vertical)?"translate3d(0,"+d.slideString+",0)":"translate3d("+d.slideString+",0,0)";d.container.css(d.args).one("webkitTransitionEnd transitionend",function(){d.wrapup(e)})}else{d.container.animate(d.args,d.vars.animationDuration,function(){d.wrapup(e)})}}else{d.slides.eq(d.currentSlide).fadeOut(d.vars.animationDuration);d.slides.eq(g).fadeIn(d.vars.animationDuration,function(){d.wrapup()})}}};d.wrapup=function(e){if(d.vars.animation=="slide"){if(d.currentSlide==0&&d.animatingTo==d.count-1&&d.vars.animationLoop){d.args[d.prop]=(-1*d.count)*e+"px";if(d.transitions){d.setTransition(0);d.args[d.prop]=(d.vertical)?"translate3d(0,"+d.args[d.prop]+",0)":"translate3d("+d.args[d.prop]+",0,0)"}d.container.css(d.args)}else{if(d.currentSlide==d.count-1&&d.animatingTo==0&&d.vars.animationLoop){d.args[d.prop]=-1*e+"px";if(d.transitions){d.setTransition(0);d.args[d.prop]=(d.vertical)?"translate3d(0,"+d.args[d.prop]+",0)":"translate3d("+d.args[d.prop]+",0,0)"}d.container.css(d.args)}}}d.animating=false;d.currentSlide=d.animatingTo;d.vars.after(d)};d.animateSlides=function(){if(!d.animating){d.flexAnimate(d.getTarget("next"))}};d.pause=function(){clearInterval(d.animatedSlides);if(d.vars.pausePlay){d.pausePlay.removeClass("pause").addClass("play").text(d.vars.playText)}};d.resume=function(){d.animatedSlides=setInterval(d.animateSlides,d.vars.slideshowSpeed);if(d.vars.pausePlay){d.pausePlay.removeClass("play").addClass("pause").text(d.vars.pauseText)}};d.canAdvance=function(e){if(!d.vars.animationLoop&&d.atEnd){if(d.currentSlide==0&&e==d.count-1&&d.direction!="next"){return false}else{if(d.currentSlide==d.count-1&&e==0&&d.direction=="next"){return false}else{return true}}}else{return true}};d.getTarget=function(e){d.direction=e;if(e=="next"){return(d.currentSlide==d.count-1)?0:d.currentSlide+1}else{return(d.currentSlide==0)?d.count-1:d.currentSlide-1}};d.setTransition=function(e){d.container.css({"-webkit-transition-duration":(e/1000)+"s"})};d.init()};a.flexslider.defaults={animation:"fade",slideDirection:"horizontal",slideshow:true,slideshowSpeed:7000,animationDuration:600,directionNav:true,controlNav:true,keyboardNav:true,mousewheel:false,prevText:"Previous",nextText:"Next",pausePlay:false,pauseText:"Pause",playText:"Play",randomize:false,slideToStart:0,animationLoop:true,pauseOnAction:true,pauseOnHover:false,controlsContainer:"",manualControls:"",start:function(){},before:function(){},after:function(){},end:function(){}};a.fn.flexslider=function(b){return this.each(function(){if(a(this).find(".slides li").length==1){a(this).find(".slides li").fadeIn(400)}else{if(a(this).data("flexslider")!=true){new a.flexslider(a(this),b)}}})}})(jQuery);
--------------------------------------------------------------------------------
/_xtensions/scripts/flexslider/readme.txt:
--------------------------------------------------------------------------------
1 | http://flex.madebymufffin.com/
2 |
3 | Flexslider is a fully responsive jQuery slider plugin. It's supported in all major browsers, has custimizable animations, multiple slider support, Callback API, and more.
4 |
5 | You can see demo to understand how it works.
6 |
7 | Include link to flexslider.css or copy its content into your skin.css file. Styles in flexslider.css are edited to work better with Simpliste.
8 |
9 | Create your sliders in html file:
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 | Include links to scripts and call flexslider on your blocks with sliders:
26 |
27 |
32 |
33 |
--------------------------------------------------------------------------------
/_xtensions/snippets/dropdown_menu.txt:
--------------------------------------------------------------------------------
1 | This is the common way to create a dropdown menu which shows on hover by using CSS.
Include in your skin.css
/* Dropdown menu */
.menu_main li {
position:relative;
}
.menu_main li ul {
display:none;
background:#fff;
padding:10px 3px;
border:1px solid #ddd;
text-align:left;
width:6em;
-webkit-box-shadow:rgba(0,0,0,0.2) 0px 4px 6px;
-moz-box-shadow:rgba(0,0,0,0.2) 0px 4px 6px;
box-shadow:rgba(0,0,0,0.2) 0px 4px 6px;
}
.menu_main li ul li {
display:block;
margin:0;
line-height:1.1;
}
.menu_main li ul a{
display:block;
padding:3px;
}
.menu_main li ul a:hover{
background:#f1f1f1;
}
.menu_main li:hover ul {
display:block;
position:absolute;
right:-1em;
top:100%;
}
/* End dropdown menu */
Example of usage in html file. Add new lavel ul in your .menu_main
--------------------------------------------------------------------------------
/_xtensions/snippets/responsive_navigation/footer_anchor.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
45 |
46 |
47 |
48 |
49 |
50 |
The footer navigation anchor with link in the header
51 |
Top navigation can hide data on mobile devices with small resolutions. To avoid this, we can place a link to the footer navigation and hide the navigation in the header. Sometimes there is only one navigation block used to achive this result, which has fixed positioning or absolutely positioned for desktop devices.
52 |
53 |
Try changing width of your browser window to see this method in action. And use the source code of this page as your guide.
54 |
55 |
56 |
57 |
58 |
59 |
60 |
HTML
61 |
62 | Add a link in your header with link_nav class and #go_nav href value. Name it as you like. It's Menu in this demo.
63 |
64 |
65 |
<nav class = "menu_main" > <a href = "#go_nav" class = "link_nav" > Menu</a> <ul> <li class = "active" ><a href = "#" > About</a></li> <li><a href = "#" > Skins</a></li> <li><a href = "#" > Samples</a></li> <li><a href = "#" > Contacts</a></li> </ul> </nav> <nav class="menu_main">
66 | <a href="#go_nav" class="link_nav">Menu</a>
67 | <ul>
68 | <li class="active"><a href="#">About</a></li>
69 | <li><a href="#">Skins</a></li>
70 | <li><a href="#">Samples</a></li>
71 | <li><a href="#">Contacts</a></li>
72 | </ul>
73 | </nav>
74 |
75 |
Add id go_nav to your footer navigation.
76 |
77 |
<nav class = "menu_bottom" > <ul id = "go_nav" > <li class = "active" ><a href = "#" > About</a></li> <li><a href = "#" > Skins</a></li> <li><a href = "#" > Samples</a></li> <li><a href = "#" > Contacts</a></li> </ul> </nav> <nav class="menu_bottom">
78 | <ul id="go_nav">
79 | <li class="active"><a href="#">About</a></li>
80 | <li><a href="#">Skins</a></li>
81 | <li><a href="#">Samples</a></li>
82 | <li><a href="#">Contacts</a></li>
83 | </ul>
84 | </nav>
85 |
86 |
87 |
CSS
88 |
89 |
Add styles for desktop and mobile phones.
90 |
91 |
.link_nav { display: none ; } @media only screen and ( max- width: 480px) { .link_nav { display: block ; } .menu_main ul { display: none ; } } .link_nav {
92 | display:none;
93 | }
94 |
95 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
96 | .link_nav {
97 | display:block;
98 | }
99 |
100 | .menu_main ul {
101 | display:none;
102 | }
103 | }
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
--------------------------------------------------------------------------------
/_xtensions/snippets/responsive_navigation/jquery.mobilemenu.min.js:
--------------------------------------------------------------------------------
1 | (function(a){function f(a){document.location.href=a}function g(){return a(".mnav").length?!0:!1}function h(b){var c=!0;b.each(function(){if(!a(this).is("ul")&&!a(this).is("ol")){c=!1;console.log(c)}});return c}function i(){return a(window).width() li").each(function(){var c=a(this),d=c.find("a").attr("href"),f=function(){return c.parent().parent().is("li")?c.parent().parent().find("a").attr("href"):null};c.find(" ul, ol").length&&l(c.find("> ul, > ol"));c.find(" > ul li, > ol li").length||c.find("ul, ol").remove();!k(f(),e)&&k(d,e)?c.appendTo(b.closest("ul#mmnav").find("li:has(a[href="+f()+"]):first ul")):k(d)?e.push(d):c.remove()})}function m(){var b=a('');c.each(function(){a(this).children().clone().appendTo(b)});l(b);console.log(b);return b}function n(b,c,d){d?a(''+d+" ").appendTo(c):a(''+a.trim(j(b))+" ").appendTo(c)}function o(c,d){var e=a(' ');n(c,e,b.groupPageText);c.children("ul, ol").each(function(){a(this).children("li").each(function(){n(a(this),e)})});e.appendTo(d)}function p(c){var e=a(' ');d++;b.topOptionText&&n(a(""+b.topOptionText+" "),e);c.children("li").each(function(){var c=a(this);c.children("ul, ol").length&&b.nested?o(c,e):n(c,e)});e.change(function(){f(a(this).val())}).prependTo(b.prependTo)}function q(){if(i()&&!g())if(b.combine){var d=m();p(d)}else c.each(function(){p(a(this))});if(i()&&g()){a(".mnav").show();c.hide()}if(!i()&&g()){a(".mnav").hide();c.show()}}var b={combine:!0,groupPageText:"Main",nested:!0,prependTo:"body",switchWidth:480,topOptionText:"Select a page"},c,d=0,e=[];a.fn.mobileMenu=function(d){d&&a.extend(b,d);if(h(a(this))){c=a(this);q();a(window).resize(function(){q()})}else alert("mobileMenu only works with /")}})(jQuery);
--------------------------------------------------------------------------------
/_xtensions/snippets/responsive_navigation/select_menu.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
27 |
28 |
29 |
30 |
31 |
32 |
44 |
45 |
46 |
47 |
48 |
49 |
Replace menu with select input
50 |
Sometimes it's better to use native browser controls for certain tasks. And maybe creating navigation on mobile devices is one of those times. Script goes through your menu and creates a select input.
51 |
52 |
This solution relies on Javascript, so don't forget to think about fallback styles.
53 |
54 |
Try changing width of your browser window to see this method in action. And use the source code of this page as your guide.
55 |
56 |
57 |
58 |
59 |
60 |
61 |
Javascript
62 |
Don't forget to include jQuery
63 |
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" ></script> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
64 |
65 |
Include a link to a small Responsive Menu plugin .
66 |
67 |
<script src = "jquery.mobilemenu.min.js" ></script> <script src="jquery.mobilemenu.min.js"></script>
68 |
69 |
Call the script on navigation element (.menu_main ul in this demo) and change defaults if needed.
70 |
71 |
$( function () { $( '.menu_main ul' ). mobileMenu ( { nested: true , prependTo: ".menu_main" , switchWidth: 480 , topOptionText: "Menu" } ); } ) $(
72 | function(){
73 | $('.menu_main ul').mobileMenu({
74 | //combine: true,
75 | //groupPageText: "Main",
76 | nested: true,
77 | prependTo: ".menu_main",
78 | switchWidth: 480,
79 | topOptionText: "Menu"
80 | });
81 | }
82 | )
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
--------------------------------------------------------------------------------
/_xtensions/snippets/sticky_footer.txt:
--------------------------------------------------------------------------------
1 | Sticky footer will always be displayed on the bottom of the browser window (when there is not much content on the page). This solution will not work if your .footer and .header have dynamic height.
Add this to your skin.css
html, body {
height:100%;
}
.container {
height: 65%; /* may be different depending on height of your .header */
}
.info {
height: auto;
min-height: 100%;
padding-bottom: 8em; /* must be same height as the footer (including paddings) */
}
.footer {
padding-top:2em;
padding-bottom:3em;
position:relative;
margin-top:-8em; /* negative value of footer height */
height:3em;
clear:both;
}
--------------------------------------------------------------------------------
/aim/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Aim" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#7E8695;
5 | background:#000;
6 | }
7 |
8 | a { color:#7E8695; }
9 | a:hover { color:#fff; }
10 | a:visited { color:#8e86a8; }
11 |
12 | ul li, ol li {
13 | padding:0 0 0.4em 0;
14 | }
15 |
16 | input,
17 | textarea,
18 | select {
19 | background:#c6c7cc;
20 | }
21 |
22 |
23 | .container {
24 | max-width:1300px;
25 | margin:0 auto;
26 | position:relative;
27 | }
28 |
29 | .header {
30 | margin:0;
31 | padding:2em 2% 0 2%;
32 | position:fixed;
33 | z-index:10;
34 | height:107px;
35 | width:96%;
36 | background:#000;
37 | max-width:1240px;
38 | }
39 |
40 | .logo {
41 | float:left;
42 | display:inline-block;
43 | font-size:18px;
44 | color:#fff;
45 | border-bottom:7px solid #1A1C21;
46 | width:19%;
47 | height:100px;
48 | }
49 |
50 | .menu_main {
51 | width:80%;
52 | height:100px;
53 | float:right;
54 | border-bottom:7px solid #1A1C21;
55 | }
56 | .menu_main a,
57 | .menu_main a:visited {
58 | display:inline-block;
59 | width:100%;
60 | border-bottom:1px solid #32353C;
61 | color:#7E8695;
62 | text-decoration:none;
63 | }
64 | .menu_main a:hover,
65 | .menu_main a:hover:visited {
66 | border-bottom:1px solid #fff;
67 | color:#fff;
68 | }
69 | .menu_main li {
70 | display:inline-block;
71 | width:30%;
72 | float:left;
73 | margin:0 2% 0 0;
74 | }
75 | .menu_main li.active a {
76 | border-bottom:1px solid #fff;
77 | color:#fff;
78 | cursor:default;
79 | }
80 |
81 |
82 | .info {
83 | padding:150px 0 1em 2%;
84 | }
85 |
86 | .hero {}
87 | .hero h1 {
88 | font-size:26px;
89 | color:#fff;
90 | }
91 |
92 | .article {}
93 |
94 | .footer {
95 | padding:2em 2% 3em 2%;
96 | }
97 |
98 | .copyright {
99 | border-top:7px solid #1A1C21;
100 | width:19%;
101 | float:left;
102 | padding:1em 0 0 0;
103 | }
104 |
105 | .menu_bottom {
106 | border-top:7px solid #1A1C21;
107 | width:80%;
108 | float:right;
109 | margin:0;
110 | padding:1em 0 0 0;;
111 | }
112 | .menu_bottom a,
113 | .menu_bottom a:visited {
114 | display:inline-block;
115 | width:100%;
116 | border-bottom:1px solid #32353C;
117 | color:#7E8695;
118 | text-decoration:none;
119 | }
120 | .menu_bottom a:hover,
121 | .menu_bottom a:hover:visited {
122 | border-bottom:1px solid #fff;
123 | color:#fff;
124 | }
125 | .menu_bottom li {
126 | display:inline-block;
127 | width:30%;
128 | float:left;
129 | margin:0 2% 0 0;
130 | }
131 | .menu_bottom li.active a {
132 | border-bottom:1px solid #fff;
133 | color:#fff;
134 | cursor:default;
135 | }
136 |
137 | h1, h2 {
138 | font-weight:normal;
139 | color:#fff;
140 | }
141 | h1 {
142 | font-size:22px;
143 | }
144 | h3, h4, h5, h6 {
145 | font-weight:bold;
146 | color:#fff;
147 | }
148 |
149 | .form label {
150 | display:inline-block;
151 | padding:0 0 4px 0;
152 | }
153 |
154 | a.button,
155 | .button {
156 | border:1px solid #32353C;
157 | text-align:center;
158 | text-decoration:none;
159 | color:#7E8695;
160 | padding:12px 20px;
161 | font-family:verdana, sans-serif;
162 | display:inline-block;
163 | background:none;
164 | }
165 | a.button:hover,
166 | .button:hover {
167 | color:#fff;
168 | border-bottom:1px solid #fff;
169 | }
170 | a.button:active,
171 | .button:active {
172 | color:#555;
173 | -webkit-box-shadow:#fff 0px -1px 1px inset;
174 | -moz-box-shadow:#fff 0px -1px 1px inset;
175 | box-shadow:#fff 0px -1px 1px inset;
176 | border-bottom:1px solid #32353C;
177 | }
178 |
179 | .table {
180 | width:100%;
181 | }
182 | .table th {
183 | padding:5px 7px;
184 | font-weight:normal;
185 | text-align:left;
186 | }
187 | .table td {
188 | padding:5px 7px;
189 | }
190 | .table tr {
191 | border-bottom:1px solid #7E8695;
192 | }
193 | .table tr:last-child {
194 | border:0;
195 | }
196 |
197 | .warning {
198 | color:#fff;
199 | padding:4px 10px;
200 | background:#ec1165;
201 | -webkit-border-radius:2px;
202 | -moz-border-radius:2px;
203 | border-radius:2px;
204 | }
205 | .success {
206 | color:#064d27;
207 | background:#11ec78;
208 | padding:4px 10px;
209 | -webkit-border-radius:2px;
210 | -moz-border-radius:2px;
211 | border-radius:2px;
212 | }
213 | .message {
214 | color:#fff;
215 | background:#3c3d3e;
216 | padding:4px 10px;
217 | -webkit-border-radius:2px;
218 | -moz-border-radius:2px;
219 | border-radius:2px;
220 | }
221 |
222 | @media only screen and (max-width:768px) { /* Tablet custom styles */
223 | .logo,
224 | .menu_main {
225 | border:none;
226 | }
227 |
228 | .header {
229 | border-bottom:7px solid #1A1C21;
230 | position:static;
231 | }
232 |
233 | .info {
234 | padding-top:1em;
235 | }
236 | }
237 |
238 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
239 | .logo {
240 | height:auto;
241 | width:100%;
242 | }
243 |
244 | .header {
245 | height:auto;
246 | }
247 |
248 | .menu_bottom {
249 | border-top:none;
250 | }
251 | }
--------------------------------------------------------------------------------
/bigcoloridea/Blue/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Big Color Idea: Blue" by Egor Kubasov. http://egorkubasov.ru */
2 | /* Webfonts */
3 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
4 | /* End webfonts */
5 | body {
6 | font-family:'Ubuntu', Tahoma, sans-serif;
7 | color:#000000;
8 | background:#eeeeee;
9 | }
10 |
11 | a { color:#00b4ff; }
12 | a:hover { color:#999999; }
13 | a:visited { color:#00b4ff; }
14 |
15 | ul li, ol li {
16 | padding:0 0 0.4em 0;
17 | }
18 |
19 | .container {
20 | max-width:1300px;
21 | margin:0 auto;
22 | }
23 |
24 | .header {
25 | margin:1px 0 1em 0;
26 | padding:2em 2% 0 2%;
27 | }
28 |
29 | .logo {
30 | font-family:'Ubuntu', Tahoma, sans-serif;
31 | float:left;
32 | display:inline-block;
33 | padding:0 0 1em;
34 | border-bottom:1px solid #00b4ff;
35 | font-size:36px;
36 | color:#00b4ff;
37 | margin-left: auto;
38 | margin-right: auto;
39 | width: 100%;
40 | text-align:center;
41 | }
42 |
43 | .menu_main {
44 | width:50%;
45 | float:right;
46 | text-align:right;
47 | margin:0.3em 0 0 0;
48 | }
49 |
50 | .menu_main li {
51 | display:inline-block;
52 | margin:0 0 0 7px;
53 | }
54 |
55 | .menu_main li.active,
56 | .menu_main li.active a {
57 | color:#00b4ff;
58 | text-decoration:none;
59 | cursor:default;
60 | }
61 |
62 | .info {
63 | padding:0 0 1em 2%;
64 | }
65 |
66 | .footer {
67 | border-top:1px solid #00b4ff;
68 | padding:2em 2% 3em 2%;
69 | color:#666;
70 | }
71 |
72 | .copyright {
73 | width:49%;
74 | float:left;
75 | font-family:georgia, serif;
76 | font-style:italic;
77 | }
78 |
79 | .menu_bottom {
80 | width:50%;
81 | float:right;
82 | text-align:right;
83 | margin:0;
84 | padding:0;
85 | }
86 | .menu_bottom li {
87 | display:inline-block;
88 | margin:0 0 0 7px;
89 | }
90 | .menu_bottom li.active,
91 | .menu_bottom li.active a {
92 | color:#00b4ff;
93 | text-decoration:none;
94 | cursor:default;
95 | }
96 |
97 | .hero h1 {
98 | font-size:26px;
99 | font-family:'Ubuntu', Tahoma, sans-serif;
100 | font-style:bold;
101 | color:#00b4ff;
102 | }
103 |
104 | h1, h2 {
105 | font-weight:normal;
106 | color:#00b4ff;
107 | }
108 |
109 | h3, h4, h5, h6 {
110 | font-weight:bold;
111 | color:#00b4ff;
112 | }
113 |
114 | h1 {
115 | font-size:22px;
116 | }
117 |
118 | .form label {
119 | display:inline-block;
120 | padding:0 0 4px 0;
121 | }
122 |
123 | a.button,
124 | .button {
125 | border:3px solid #00b4ff;
126 | text-align:center;
127 | text-decoration:none;
128 | -webkit-box-shadow:#000 0px 0px 1px;
129 | -moz-box-shadow:#000 0px 0px 1px;
130 | box-shadow:#000 0px 0px 1px;
131 | background:#8fd7f5;
132 | color:#fff;
133 | padding:5px 20px;
134 | font-family:'Ubuntu';
135 | font-weight: 700;
136 | font-size: 15px;
137 | text-shadow:1px 1px 1px #2e2e2e;
138 | display:inline-block;
139 | }
140 | a.button:hover,
141 | .button:hover {
142 | color:#fff;
143 | background:#77d1f7;
144 | }
145 | a.button:active,
146 | .button:active {
147 | color:#fff;
148 | background: #30c0fc;
149 | }
150 |
151 | .table {
152 | width:100%;
153 | }
154 | .table th {
155 | padding:5px 7px;
156 | font-weight:normal;
157 | text-align:left;
158 | font-size:1.2em;
159 | background:#8fd7f5;
160 | border:1px solid #00b4ff;
161 | color:#666;
162 | }
163 | .table td {
164 | padding:5px 7px;
165 | }
166 | .table tr {
167 | border-bottom:1px solid #00b4ff;
168 | }
169 | .table tr:last-child {
170 | border-bottom:1px solid #00b4ff;
171 | }
172 |
173 | .warning {
174 | border:3px solid #ff0000;
175 | color:#000;
176 | padding:8px 14px;
177 | background:transperent;
178 | font-size: 16px;
179 | -webkit-box-shadow:#666 1px 1px 2px;
180 | -moz-box-shadow:#666 1px 1px 2px;
181 | box-shadow:#666 1px 1px 2px;
182 | }
183 | .success {
184 | border:3px solid #399f16;
185 | color:#000;
186 | background:transperent;
187 | padding:8px 14px;
188 | font-size: 16px;
189 | -webkit-box-shadow:#666 1px 1px 2px;
190 | -moz-box-shadow:#666 1px 1px 2px;
191 | box-shadow:#666 1px 1px 2px;
192 | }
193 | .message {
194 | border:3px solid #fff600;
195 | color:#000;
196 | background:transperent;
197 | padding:8px 14px;
198 | font-size: 16px;
199 | -webkit-box-shadow:#666 1px 1px 2px;
200 | -moz-box-shadow:#666 1px 1px 2px;
201 | box-shadow:#666 1px 1px 2px;
202 | }
203 |
204 |
205 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
206 | }
207 |
208 | @media only screen and (max-width:768px) { /* Tablet custom styles */
209 | }
210 |
--------------------------------------------------------------------------------
/bigcoloridea/Dark-Blue/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Big Color Idea: Dark-blue" by Egor Kubasov. http://egorkubasov.ru */
2 | /* Webfonts */
3 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
4 | /* End webfonts */
5 |
6 | body {
7 | font-family:'Ubuntu', Tahoma, sans-serif;
8 | color:#000000;
9 | background:#eeeeee;
10 | }
11 |
12 | a { color:#1200ff; }
13 | a:hover { color:#999999; }
14 | a:visited { color:#1200ff; }
15 |
16 | ul li, ol li {
17 | padding:0 0 0.4em 0;
18 | }
19 |
20 | .container {
21 | max-width:1300px;
22 | margin:0 auto;
23 | }
24 |
25 | .header {
26 | margin:1px 0 1em 0;
27 | padding:2em 2% 0 2%;
28 | }
29 |
30 | .logo {
31 | font-family:'Ubuntu', Tahoma, sans-serif;
32 | float:left;
33 | display:inline-block;
34 | padding:0 0 1em;
35 | border-bottom:1px solid #1200ff;
36 | font-size:36px;
37 | color:#1200ff;
38 | margin-left: auto;
39 | margin-right: auto;
40 | width: 100%;
41 | text-align:center;
42 | }
43 |
44 | .menu_main {
45 | width:50%;
46 | float:right;
47 | text-align:right;
48 | margin:0.3em 0 0 0;
49 | }
50 |
51 | .menu_main li {
52 | display:inline-block;
53 | margin:0 0 0 7px;
54 | }
55 |
56 | .menu_main li.active,
57 | .menu_main li.active a {
58 | color:#1200ff;
59 | text-decoration:none;
60 | cursor:default;
61 | }
62 |
63 | .info {
64 | padding:0 0 1em 2%;
65 | }
66 |
67 | .footer {
68 | border-top:1px solid #1200ff;
69 | padding:2em 2% 3em 2%;
70 | color:#666;
71 | }
72 |
73 | .copyright {
74 | width:49%;
75 | float:left;
76 | font-family:georgia, serif;
77 | font-style:italic;
78 | }
79 |
80 | .menu_bottom {
81 | width:50%;
82 | float:right;
83 | text-align:right;
84 | margin:0;
85 | padding:0;
86 | }
87 | .menu_bottom li {
88 | display:inline-block;
89 | margin:0 0 0 7px;
90 | }
91 | .menu_bottom li.active,
92 | .menu_bottom li.active a {
93 | color:#1200ff;
94 | text-decoration:none;
95 | cursor:default;
96 | }
97 |
98 | .hero h1 {
99 | font-size:26px;
100 | font-family:'Ubuntu', Tahoma, sans-serif;
101 | font-style:bold;
102 | color:#1200ff;
103 | }
104 |
105 | h1, h2 {
106 | font-weight:normal;
107 | color:#1200ff;
108 | }
109 |
110 | h3, h4, h5, h6 {
111 | font-weight:bold;
112 | color:#1200ff;
113 | }
114 |
115 | h1 {
116 | font-size:22px;
117 | }
118 |
119 | .form label {
120 | display:inline-block;
121 | padding:0 0 4px 0;
122 | }
123 |
124 | a.button,
125 | .button {
126 | border:3px solid #1200ff;
127 | text-align:center;
128 | text-decoration:none;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#968ff5;
133 | color:#fff;
134 | padding:5px 20px;
135 | font-family:'Ubuntu';
136 | font-weight: 700;
137 | font-size: 15px;
138 | text-shadow:1px 1px 1px #2e2e2e;
139 | display:inline-block;
140 | }
141 | a.button:hover,
142 | .button:hover {
143 | color:#fff;
144 | background:#6a5ff8;
145 | }
146 | a.button:active,
147 | .button:active {
148 | color:#fff;
149 | background: #3e30fc;
150 | }
151 |
152 | .table {
153 | width:100%;
154 | }
155 | .table th {
156 | padding:5px 7px;
157 | font-weight:normal;
158 | text-align:left;
159 | font-size:1.2em;
160 | background:#968ff5;
161 | border:1px solid #1200ff;
162 | color:#666;
163 | }
164 | .table td {
165 | padding:5px 7px;
166 | }
167 | .table tr {
168 | border-bottom:1px solid #1200ff;
169 | }
170 | .table tr:last-child {
171 | border-bottom:1px solid #1200ff;
172 | }
173 |
174 | .warning {
175 | border:3px solid #ff0000;
176 | color:#000;
177 | padding:8px 14px;
178 | background:transperent;
179 | font-size: 16px;
180 | -webkit-box-shadow:#666 1px 1px 2px;
181 | -moz-box-shadow:#666 1px 1px 2px;
182 | box-shadow:#666 1px 1px 2px;
183 | }
184 | .success {
185 | border:3px solid #399f16;
186 | color:#000;
187 | background:transperent;
188 | padding:8px 14px;
189 | font-size: 16px;
190 | -webkit-box-shadow:#666 1px 1px 2px;
191 | -moz-box-shadow:#666 1px 1px 2px;
192 | box-shadow:#666 1px 1px 2px;
193 | }
194 | .message {
195 | border:3px solid #fff600;
196 | color:#000;
197 | background:transperent;
198 | padding:8px 14px;
199 | font-size: 16px;
200 | -webkit-box-shadow:#666 1px 1px 2px;
201 | -moz-box-shadow:#666 1px 1px 2px;
202 | box-shadow:#666 1px 1px 2px;
203 | }
204 |
205 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
206 | }
207 |
208 | @media only screen and (max-width:768px) { /* Tablet custom styles */
209 | }
--------------------------------------------------------------------------------
/bigcoloridea/Orange/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "big Color Idea: Orange" by Egor Kubasov. http://egorkubasov.ru */
2 | /* Webfonts */
3 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
4 | /* End webfonts */
5 |
6 | body {
7 | font-family:'Ubuntu', Tahoma, sans-serif;
8 | color:#000000;
9 | background:#eeeeee;
10 | }
11 |
12 | a { color:#ff7800; }
13 | a:hover { color:#999999; }
14 | a:visited { color:#ff7800; }
15 |
16 | ul li, ol li {
17 | padding:0 0 0.4em 0;
18 | }
19 |
20 | .container {
21 | max-width:1300px;
22 | margin:0 auto;
23 | }
24 |
25 | .header {
26 | margin:1px 0 1em 0;
27 | padding:2em 2% 0 2%;
28 | }
29 |
30 | .logo {
31 | font-family:'Ubuntu', Tahoma, sans-serif;
32 | float:left;
33 | display:inline-block;
34 | padding:0 0 1em;
35 | border-bottom:1px solid #ff7800;
36 | font-size:36px;
37 | color:#ff7800;
38 | margin-left: auto;
39 | margin-right: auto;
40 | width: 100%;
41 | text-align:center;
42 | }
43 |
44 | .menu_main {
45 | width:50%;
46 | float:right;
47 | text-align:right;
48 | margin:0.3em 0 0 0;
49 | }
50 |
51 | .menu_main li {
52 | display:inline-block;
53 | margin:0 0 0 7px;
54 | }
55 |
56 | .menu_main li.active,
57 | .menu_main li.active a {
58 | color:#v;
59 | text-decoration:none;
60 | cursor:default;
61 | }
62 |
63 | .info {
64 | padding:0 0 1em 2%;
65 | }
66 |
67 | .footer {
68 | border-top:1px solid #ff7800;
69 | padding:2em 2% 3em 2%;
70 | color:#666;
71 | }
72 |
73 | .copyright {
74 | width:49%;
75 | float:left;
76 | font-family:georgia, serif;
77 | font-style:italic;
78 | }
79 |
80 | .menu_bottom {
81 | width:50%;
82 | float:right;
83 | text-align:right;
84 | margin:0;
85 | padding:0;
86 | }
87 | .menu_bottom li {
88 | display:inline-block;
89 | margin:0 0 0 7px;
90 | }
91 | .menu_bottom li.active,
92 | .menu_bottom li.active a {
93 | color:#ff7800;
94 | text-decoration:none;
95 | cursor:default;
96 | }
97 |
98 | .hero h1 {
99 | font-size:26px;
100 | font-family:'Ubuntu', Tahoma, sans-serif;
101 | font-style:bold;
102 | color:#ff7800;
103 | }
104 |
105 | h1, h2 {
106 | font-weight:normal;
107 | color:#ff7800;
108 | }
109 |
110 | h3, h4, h5, h6 {
111 | font-weight:bold;
112 | color:#ff7800;
113 | }
114 |
115 | h1 {
116 | font-size:22px;
117 | }
118 |
119 | .form label {
120 | display:inline-block;
121 | padding:0 0 4px 0;
122 | }
123 |
124 | a.button,
125 | .button {
126 | border:3px solid #ff7800;
127 | text-align:center;
128 | text-decoration:none;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#f5bf8f;
133 | color:#fff;
134 | padding:5px 20px;
135 | font-family:'Ubuntu';
136 | font-weight: 700;
137 | font-size: 15px;
138 | text-shadow:1px 1px 1px #2e2e2e;
139 | display:inline-block;
140 | }
141 | a.button:hover,
142 | .button:hover {
143 | color:#fff;
144 | background:#f8a75f;
145 | }
146 | a.button:active,
147 | .button:active {
148 | color:#fff;
149 | background: #fc9030;
150 | }
151 |
152 | .table {
153 | width:100%;
154 | }
155 | .table th {
156 | padding:5px 7px;
157 | font-weight:normal;
158 | text-align:left;
159 | font-size:1.2em;
160 | background:#f5bf8f;
161 | border:1px solid #ff7800;
162 | color:#666;
163 | }
164 | .table td {
165 | padding:5px 7px;
166 | }
167 | .table tr {
168 | border-bottom:1px solid #ff7800;
169 | }
170 | .table tr:last-child {
171 | border-bottom:1px solid #ff7800;
172 | }
173 |
174 | .warning {
175 | border:3px solid #ff0000;
176 | color:#000;
177 | padding:8px 14px;
178 | background:transperent;
179 | font-size: 16px;
180 | -webkit-box-shadow:#666 1px 1px 2px;
181 | -moz-box-shadow:#666 1px 1px 2px;
182 | box-shadow:#666 1px 1px 2px;
183 | }
184 | .success {
185 | border:3px solid #399f16;
186 | color:#000;
187 | background:transperent;
188 | padding:8px 14px;
189 | font-size: 16px;
190 | -webkit-box-shadow:#666 1px 1px 2px;
191 | -moz-box-shadow:#666 1px 1px 2px;
192 | box-shadow:#666 1px 1px 2px;
193 | }
194 | .message {
195 | border:3px solid #fff600;
196 | color:#000;
197 | background:transperent;
198 | padding:8px 14px;
199 | font-size: 16px;
200 | -webkit-box-shadow:#666 1px 1px 2px;
201 | -moz-box-shadow:#666 1px 1px 2px;
202 | box-shadow:#666 1px 1px 2px;
203 | }
204 |
205 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
206 | }
207 |
208 | @media only screen and (max-width:768px) { /* Tablet custom styles */
209 | }
--------------------------------------------------------------------------------
/bigcoloridea/Pink/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Big Color Idea: Pink" by Egor Kubasov. http://egorkubasov.ru */
2 | /* Webfonts */
3 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
4 | /* End webfonts */
5 |
6 | body {
7 | font-family:'Ubuntu', Tahoma, sans-serif;
8 | color:#000000;
9 | background:#eeeeee;
10 | }
11 |
12 | a { color:#ff00f6; }
13 | a:hover { color:#999999; }
14 | a:visited { color:#ff00f6; }
15 |
16 | ul li, ol li {
17 | padding:0 0 0.4em 0;
18 | }
19 |
20 | .container {
21 | max-width:1300px;
22 | margin:0 auto;
23 | }
24 |
25 | .header {
26 | margin:1px 0 1em 0;
27 | padding:2em 2% 0 2%;
28 | }
29 |
30 | .logo {
31 | font-family:'Ubuntu', Tahoma, sans-serif;
32 | float:left;
33 | display:inline-block;
34 | padding:0 0 1em;
35 | border-bottom:1px solid #ff00f6;
36 | font-size:36px;
37 | color:#ff00f6;
38 | margin-left: auto;
39 | margin-right: auto;
40 | width: 100%;
41 | text-align:center;
42 | }
43 |
44 | .menu_main {
45 | width:50%;
46 | float:right;
47 | text-align:right;
48 | margin:0.3em 0 0 0;
49 | }
50 |
51 | .menu_main li {
52 | display:inline-block;
53 | margin:0 0 0 7px;
54 | }
55 |
56 | .menu_main li.active,
57 | .menu_main li.active a {
58 | color:#ff00f6;
59 | text-decoration:none;
60 | cursor:default;
61 | }
62 |
63 | .info {
64 | padding:0 0 1em 2%;
65 | }
66 |
67 | .footer {
68 | border-top:1px solid #ff00f6;
69 | padding:2em 2% 3em 2%;
70 | color:#666;
71 | }
72 |
73 | .copyright {
74 | width:49%;
75 | float:left;
76 | font-family:georgia, serif;
77 | font-style:italic;
78 | }
79 |
80 | .menu_bottom {
81 | width:50%;
82 | float:right;
83 | text-align:right;
84 | margin:0;
85 | padding:0;
86 | }
87 | .menu_bottom li {
88 | display:inline-block;
89 | margin:0 0 0 7px;
90 | }
91 | .menu_bottom li.active,
92 | .menu_bottom li.active a {
93 | color:#ff00f6;
94 | text-decoration:none;
95 | cursor:default;
96 | }
97 |
98 | .hero h1 {
99 | font-size:26px;
100 | font-family:'Ubuntu', Tahoma, sans-serif;
101 | font-style:bold;
102 | color:#ff00f6;
103 | }
104 |
105 | h1, h2 {
106 | font-weight:normal;
107 | color:#ff00f6;
108 | }
109 |
110 | h3, h4, h5, h6 {
111 | font-weight:bold;
112 | color:#ff00f6;
113 | }
114 |
115 | h1 {
116 | font-size:22px;
117 | }
118 |
119 | .form label {
120 | display:inline-block;
121 | padding:0 0 4px 0;
122 | }
123 |
124 | a.button,
125 | .button {
126 | border:3px solid #ff00f6;
127 | text-align:center;
128 | text-decoration:none;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#f58ff1;
133 | color:#fff;
134 | padding:5px 20px;
135 | font-family:'Ubuntu';
136 | font-weight: 700;
137 | font-size: 15px;
138 | text-shadow:1px 1px 1px #2e2e2e;
139 | display:inline-block;
140 | }
141 | a.button:hover,
142 | .button:hover {
143 | color:#fff;
144 | background:#f85ff3;
145 | }
146 | a.button:active,
147 | .button:active {
148 | color:#fff;
149 | background: #fc30f4;
150 | }
151 |
152 | .table {
153 | width:100%;
154 | }
155 | .table th {
156 | padding:5px 7px;
157 | font-weight:normal;
158 | text-align:left;
159 | font-size:1.2em;
160 | background:#f58ff1;
161 | border:1px solid #ff00f6;
162 | color:#666;
163 | }
164 | .table td {
165 | padding:5px 7px;
166 | }
167 | .table tr {
168 | border-bottom:1px solid #ff00f6;
169 | }
170 | .table tr:last-child {
171 | border-bottom:1px solid #ff00f6;
172 | }
173 |
174 | .warning {
175 | border:3px solid #ff0000;
176 | color:#000;
177 | padding:8px 14px;
178 | background:transperent;
179 | font-size: 16px;
180 | -webkit-box-shadow:#666 1px 1px 2px;
181 | -moz-box-shadow:#666 1px 1px 2px;
182 | box-shadow:#666 1px 1px 2px;
183 | }
184 | .success {
185 | border:3px solid #399f16;
186 | color:#000;
187 | background:transperent;
188 | padding:8px 14px;
189 | font-size: 16px;
190 | -webkit-box-shadow:#666 1px 1px 2px;
191 | -moz-box-shadow:#666 1px 1px 2px;
192 | box-shadow:#666 1px 1px 2px;
193 | }
194 | .message {
195 | border:3px solid #fff600;
196 | color:#000;
197 | background:transperent;
198 | padding:8px 14px;
199 | font-size: 16px;
200 | -webkit-box-shadow:#666 1px 1px 2px;
201 | -moz-box-shadow:#666 1px 1px 2px;
202 | box-shadow:#666 1px 1px 2px;
203 | }
204 |
205 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
206 | }
207 |
208 | @media only screen and (max-width:768px) { /* Tablet custom styles */
209 | }
--------------------------------------------------------------------------------
/bigcoloridea/Purple/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Big Color Idea: Purple" by Egor Kubasov. http://egorkubasov.ru */
2 | /* Webfonts */
3 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
4 | /* End webfonts */
5 |
6 | body {
7 | font-family:'Ubuntu', Tahoma, sans-serif;
8 | color:#000000;
9 | background:#eeeeee;
10 | }
11 |
12 | a { color:#a200ff; }
13 | a:hover { color:#999999; }
14 | a:visited { color:#a200ff; }
15 |
16 | ul li, ol li {
17 | padding:0 0 0.4em 0;
18 | }
19 |
20 | .container {
21 | max-width:1300px;
22 | margin:0 auto;
23 | }
24 |
25 | .header {
26 | margin:1px 0 1em 0;
27 | padding:2em 2% 0 2%;
28 | }
29 |
30 | .logo {
31 | font-family:'Ubuntu', Tahoma, sans-serif;
32 | float:left;
33 | display:inline-block;
34 | padding:0 0 1em;
35 | border-bottom:1px solid #a200ff;
36 | font-size:36px;
37 | color:#a200ff;
38 | margin-left: auto;
39 | margin-right: auto;
40 | width: 100%;
41 | text-align:center;
42 | }
43 |
44 | .menu_main {
45 | width:50%;
46 | float:right;
47 | text-align:right;
48 | margin:0.3em 0 0 0;
49 | }
50 |
51 | .menu_main li {
52 | display:inline-block;
53 | margin:0 0 0 7px;
54 | }
55 |
56 | .menu_main li.active,
57 | .menu_main li.active a {
58 | color:#a200ff;
59 | text-decoration:none;
60 | cursor:default;
61 | }
62 |
63 | .info {
64 | padding:0 0 1em 2%;
65 | }
66 |
67 | .footer {
68 | border-top:1px solid #a200ff;
69 | padding:2em 2% 3em 2%;
70 | color:#666;
71 | }
72 |
73 | .copyright {
74 | width:49%;
75 | float:left;
76 | font-family:georgia, serif;
77 | font-style:italic;
78 | }
79 |
80 | .menu_bottom {
81 | width:50%;
82 | float:right;
83 | text-align:right;
84 | margin:0;
85 | padding:0;
86 | }
87 | .menu_bottom li {
88 | display:inline-block;
89 | margin:0 0 0 7px;
90 | }
91 | .menu_bottom li.active,
92 | .menu_bottom li.active a {
93 | color:#a200ff;
94 | text-decoration:none;
95 | cursor:default;
96 | }
97 |
98 | .hero h1 {
99 | font-size:26px;
100 | font-family:'Ubuntu', Tahoma, sans-serif;
101 | font-style:bold;
102 | color:#a200ff;
103 | }
104 |
105 | h1, h2 {
106 | font-weight:normal;
107 | color:#a200ff;
108 | }
109 |
110 | h3, h4, h5, h6 {
111 | font-weight:bold;
112 | color:#a200ff;
113 | }
114 |
115 | h1 {
116 | font-size:22px;
117 | }
118 |
119 | .form label {
120 | display:inline-block;
121 | padding:0 0 4px 0;
122 | }
123 |
124 | a.button,
125 | .button {
126 | border:3px solid #a200ff;
127 | text-align:center;
128 | text-decoration:none;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#d08ff5;
133 | color:#fff;
134 | padding:5px 20px;
135 | font-family:'Ubuntu';
136 | font-weight: 700;
137 | font-size: 15px;
138 | text-shadow:1px 1px 1px #2e2e2e;
139 | display:inline-block;
140 | }
141 | a.button:hover,
142 | .button:hover {
143 | color:#fff;
144 | background:#c05ff8;
145 | }
146 | a.button:active,
147 | .button:active {
148 | color:#fff;
149 | background: #b130fc;
150 | }
151 |
152 | .table {
153 | width:100%;
154 | }
155 | .table th {
156 | padding:5px 7px;
157 | font-weight:normal;
158 | text-align:left;
159 | font-size:1.2em;
160 | background:#d08ff5;
161 | border:1px solid #a200ff;
162 | color:#666;
163 | }
164 | .table td {
165 | padding:5px 7px;
166 | }
167 | .table tr {
168 | border-bottom:1px solid #a200ff;
169 | }
170 | .table tr:last-child {
171 | border-bottom:1px solid #a200ff;
172 | }
173 |
174 | .warning {
175 | border:3px solid #ff0000;
176 | color:#000;
177 | padding:8px 14px;
178 | background:transperent;
179 | font-size: 16px;
180 | -webkit-box-shadow:#666 1px 1px 2px;
181 | -moz-box-shadow:#666 1px 1px 2px;
182 | box-shadow:#666 1px 1px 2px;
183 | }
184 | .success {
185 | border:3px solid #399f16;
186 | color:#000;
187 | background:transperent;
188 | padding:8px 14px;
189 | font-size: 16px;
190 | -webkit-box-shadow:#666 1px 1px 2px;
191 | -moz-box-shadow:#666 1px 1px 2px;
192 | box-shadow:#666 1px 1px 2px;
193 | }
194 | .message {
195 | border:3px solid #fff600;
196 | color:#000;
197 | background:transperent;
198 | padding:8px 14px;
199 | font-size: 16px;
200 | -webkit-box-shadow:#666 1px 1px 2px;
201 | -moz-box-shadow:#666 1px 1px 2px;
202 | box-shadow:#666 1px 1px 2px;
203 | }
204 |
205 | @media only screen and (max-width:480px) { /* Smartphone custom styles*/
206 | }
207 |
208 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
209 | }
--------------------------------------------------------------------------------
/bigcoloridea/Red/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Big Color Idea: Red" by Egor Kubasov. http://egorkubasov.ru */
2 | /* Webfonts */
3 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
4 | /* End webfonts */
5 |
6 | body {
7 | font-family:'Ubuntu', Tahoma, sans-serif;
8 | color:#000000;
9 | background:#eeeeee;
10 | }
11 |
12 | a { color:#ff0000; }
13 | a:hover { color:#999999; }
14 | a:visited { color:#ff0000; }
15 |
16 | ul li, ol li {
17 | padding:0 0 0.4em 0;
18 | }
19 |
20 | .container {
21 | max-width:1300px;
22 | margin:0 auto;
23 | }
24 |
25 | .header {
26 | margin:1px 0 1em 0;
27 | padding:2em 2% 0 2%;
28 | }
29 |
30 | .logo {
31 | font-family:'Ubuntu', Tahoma, sans-serif;
32 | float:left;
33 | display:inline-block;
34 | padding:0 0 1em;
35 | border-bottom:1px solid #ff0000;
36 | font-size:36px;
37 | color:#ff0000;
38 | margin-left: auto;
39 | margin-right: auto;
40 | width: 100%;
41 | text-align:center;
42 | }
43 |
44 | .menu_main {
45 | width:50%;
46 | float:right;
47 | text-align:right;
48 | margin:0.3em 0 0 0;
49 | }
50 |
51 | .menu_main li {
52 | display:inline-block;
53 | margin:0 0 0 7px;
54 | }
55 |
56 | .menu_main li.active,
57 | .menu_main li.active a {
58 | color:#ff0000;
59 | text-decoration:none;
60 | cursor:default;
61 | }
62 |
63 | .info {
64 | padding:0 0 1em 2%;
65 | }
66 |
67 | .footer {
68 | border-top:1px solid #ff0000;
69 | padding:2em 2% 3em 2%;
70 | color:#666;
71 | }
72 |
73 | .copyright {
74 | width:49%;
75 | float:left;
76 | font-family:georgia, serif;
77 | font-style:italic;
78 | }
79 |
80 | .menu_bottom {
81 | width:50%;
82 | float:right;
83 | text-align:right;
84 | margin:0;
85 | padding:0;
86 | }
87 | .menu_bottom li {
88 | display:inline-block;
89 | margin:0 0 0 7px;
90 | }
91 | .menu_bottom li.active,
92 | .menu_bottom li.active a {
93 | color:#ff0000;
94 | text-decoration:none;
95 | cursor:default;
96 | }
97 |
98 | .hero h1 {
99 | font-size:26px;
100 | font-family:'Ubuntu', Tahoma, sans-serif;
101 | font-style:bold;
102 | color:#ff0000;
103 | }
104 |
105 | h1, h2 {
106 | font-weight:normal;
107 | color:#ff0000;
108 | }
109 |
110 | h3, h4, h5, h6 {
111 | font-weight:bold;
112 | color:#ff0000;
113 | }
114 |
115 | h1 {
116 | font-size:22px;
117 | }
118 |
119 | .form label {
120 | display:inline-block;
121 | padding:0 0 4px 0;
122 | }
123 |
124 | a.button,
125 | .button {
126 | border:3px solid #ff0000;
127 | text-align:center;
128 | text-decoration:none;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#f58f8f;
133 | color:#fff;
134 | padding:5px 20px;
135 | font-family:'Ubuntu';
136 | font-weight: 700;
137 | font-size: 15px;
138 | text-shadow:1px 1px 1px #2e2e2e;
139 | display:inline-block;
140 | }
141 | a.button:hover,
142 | .button:hover {
143 | color:#fff;
144 | background:#f85f5f;
145 | }
146 | a.button:active,
147 | .button:active {
148 | color:#fff;
149 | background: #fc3030;
150 | }
151 |
152 | .table {
153 | width:100%;
154 | }
155 | .table th {
156 | padding:5px 7px;
157 | font-weight:normal;
158 | text-align:left;
159 | font-size:1.2em;
160 | background:#f58f8f;
161 | border:1px solid #ff0000;
162 | color:#666;
163 | }
164 | .table td {
165 | padding:5px 7px;
166 | }
167 | .table tr {
168 | border-bottom:1px solid #ff0000;
169 | }
170 | .table tr:last-child {
171 | border-bottom:1px solid #ff0000;
172 | }
173 |
174 | .warning {
175 | border:3px solid #ff0000;
176 | color:#000;
177 | padding:8px 14px;
178 | background:transperent;
179 | font-size: 16px;
180 | -webkit-box-shadow:#666 1px 1px 2px;
181 | -moz-box-shadow:#666 1px 1px 2px;
182 | box-shadow:#666 1px 1px 2px;
183 | }
184 | .success {
185 | border:3px solid #399f16;
186 | color:#000;
187 | background:transperent;
188 | padding:8px 14px;
189 | font-size: 16px;
190 | -webkit-box-shadow:#666 1px 1px 2px;
191 | -moz-box-shadow:#666 1px 1px 2px;
192 | box-shadow:#666 1px 1px 2px;
193 | }
194 | .message {
195 | border:3px solid #fff600;
196 | color:#000;
197 | background:transperent;
198 | padding:8px 14px;
199 | font-size: 16px;
200 | -webkit-box-shadow:#666 1px 1px 2px;
201 | -moz-box-shadow:#666 1px 1px 2px;
202 | box-shadow:#666 1px 1px 2px;
203 | }
204 |
205 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
206 | }
207 |
208 | @media only screen and (max-width:768px) { /* Tablet */
209 | }
--------------------------------------------------------------------------------
/blackberry/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Blackberry" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#333;
5 | background:#676D8F;
6 | }
7 |
8 | a { color:#004dd9; }
9 | a:hover { color:#ea0000; }
10 | a:visited { color:#551a8b; }
11 |
12 | ul li, ol li {
13 | padding:0 0 0.4em 0;
14 | }
15 |
16 |
17 | .container {
18 | max-width:1300px;
19 | margin:0 auto;
20 | }
21 |
22 | .header {
23 | padding:2em 2% 2em;
24 | background:#70779C;
25 | color:#fff;
26 | margin:0 1% 1em;
27 | -webkit-border-radius:0 0 30% 30% / 0 0 12px 12px;
28 | -moz-border-radius:0 0 30% 30% / 0 0 12px 12px;
29 | border-radius:0 0 30% 30% / 0 0 12px 12px;
30 | -webkit-box-shadow: rgba(0,0,0,0.1) 0px 3px 3px;
31 | -moz-box-shadow: rgba(0,0,0,0.1) 0px 3px 3px;
32 | box-shadow: rgba(0,0,0,0.1) 0px 3px 3px;
33 | background: -moz-radial-gradient(center top, farthest-corner, #97A1D2 10%, #70779C 67%);
34 | background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(10%,#97A1D2), color-stop(67%,#70779C));
35 | background: -webkit-radial-gradient(center top, farthest-corner, #97A1D2 10%, #70779C 67%);
36 | background: -o-radial-gradient(center top, farthest-corner, #97A1D2 10%, #70779C 67%);
37 | background: -ms-radial-gradient(center top, farthest-corner, #97A1D2 10%, #70779C 67%);
38 | background: radial-gradient(center top, farthest-corner, #97A1D2 10%, #70779C 67%);
39 | }
40 |
41 | .logo {
42 | float:left;
43 | display:inline-block;
44 | font-size:18px;
45 | color:#FFD400;
46 | }
47 |
48 | .menu_main {
49 | width:50%;
50 | float:right;
51 | text-align:right;
52 | margin:0.3em 0 0 0;
53 | }
54 |
55 | .menu_main a,
56 | .menu_main a:visited {
57 | color:#fff;
58 | }
59 | .menu_main a:hover,
60 | .menu_main a:visited:hover {
61 | color:#FFD400;
62 | }
63 |
64 |
65 | .menu_main li {
66 | display:inline-block;
67 | margin:0 0 0 7px;
68 | }
69 |
70 | .menu_main li.active,
71 | .menu_main li.active a {
72 | text-decoration:none;
73 | cursor:default;
74 | }
75 |
76 | .hero {
77 | background:#70779C;
78 | color:#fff;
79 | padding:0.5em 0 1em 2%;
80 | margin:0 1% 1em;
81 | position:relative;
82 | }
83 | .hero:before {
84 | content:"";
85 | display:block!important;
86 | position:absolute;
87 | left:0;
88 | top:10%;
89 | height:80%;
90 | width:100%;
91 | z-index:-1;
92 | -webkit-border-radius:12px/90px;
93 | -moz-border-radius:12px/90px;
94 | border-radius:12px/90px;
95 | -webkit-box-shadow: rgba(0,0,0,0.5) 0px 0px 8px;
96 | -moz-box-shadow: rgba(0,0,0,0.5) 0px 0px 8px;
97 | box-shadow: rgba(0,0,0,0.5) 0px 0px 8px;
98 | }
99 |
100 | .hero a,
101 | .hero a:visited {
102 | color:#fff;
103 | }
104 |
105 |
106 | .article {
107 | padding:0 0 2em 2%;
108 | margin:0 1% 0;
109 | background:#fff;
110 | -webkit-box-shadow: rgba(0,0,0,0.4) 0px 0px 4px;
111 | -moz-box-shadow: rgba(0,0,0,0.4) 0px 0px 4px;
112 | box-shadow: rgba(0,0,0,0.4) 0px 0px 4px;
113 | }
114 |
115 | .footer {
116 | padding:2em 2% 3em 2%;
117 | color:#fff;
118 | }
119 |
120 | .copyright {
121 | width:49%;
122 | float:left;
123 | }
124 |
125 | .menu_bottom {
126 | width:50%;
127 | float:right;
128 | text-align:right;
129 | margin:0;
130 | padding:0;
131 | }
132 | .menu_bottom li {
133 | display:inline-block;
134 | margin:0 0 0 7px;
135 | }
136 | .menu_bottom li.active,
137 | .menu_bottom li.active a {
138 | text-decoration:none;
139 | cursor:default;
140 | }
141 |
142 | .menu_bottom a,
143 | .menu_bottom a:visited {
144 | color:#fff;
145 | }
146 | .menu_bottom a:hover,
147 | .menu_bottom a:visited:hover {
148 | color:#FFD400;
149 | }
150 |
151 |
152 | .hero h1 {
153 | font-size:26px;
154 | color:#fff;
155 | }
156 |
157 | h1, h2 {
158 | font-weight:normal;
159 | color:#000;
160 | }
161 |
162 | h3, h4, h5, h6 {
163 | font-weight:bold;
164 | color:#000;
165 | }
166 |
167 | h1 {
168 | font-size:22px;
169 | }
170 |
171 | .form label {
172 | display:inline-block;
173 | padding:0 0 4px 0;
174 | }
175 |
176 | .hero a.button,
177 | a.button,
178 | .button {
179 | border: 1px solid #EDB200;
180 | text-align:center;
181 | text-decoration:none;
182 | text-shadow:1px 1px 0 #F9E67B;
183 | background:#FFD400;
184 | background: -moz-radial-gradient(center top, farthest-corner, #F9E67B 10%, #FFD400 67%);
185 | background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(10%,#F9E67B), color-stop(67%,#ffd400));
186 | background: -webkit-radial-gradient(center top, farthest-corner, #F9E67B 10%, #FFD400 67%);
187 | background: -o-radial-gradient(center top, farthest-corner, #F9E67B 10%, #FFD400 67%);
188 | background: -ms-radial-gradient(center top, farthest-corner, #F9E67B 10%, #FFD400 67%);
189 | background: radial-gradient(center top, farthest-corner, #F9E67B 10%, #FFD400 67%);
190 | color:#3F4256;
191 | padding:10px 20px;
192 | font-family:verdana, sans-serif;
193 | display:inline-block;
194 | -webkit-border-radius: 3px;
195 | -moz-border-radius: 3px;
196 | border-radius: 3px;
197 | -webkit-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
198 | -moz-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
199 | box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
200 | }
201 |
202 | a.button:hover,
203 | .button:hover {
204 | -webkit-box-shadow: rgba(0,0,0,0.5) 0px 1px 4px;
205 | -moz-box-shadow: rgba(0,0,0,0.5) 0px 1px 4px;
206 | box-shadow: rgba(0,0,0,0.5) 0px 1px 4px;
207 | background:#ffc000;
208 | background: -moz-radial-gradient(center top, farthest-corner, #F9E67B 10%, #ffc000 67%);
209 | background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(10%,#F9E67B), color-stop(67%,#ffc000));
210 | background: -webkit-radial-gradient(center top, farthest-corner, #F9E67B 10%, #ffc000 67%);
211 | background: -o-radial-gradient(center top, farthest-corner, #F9E67B 10%, #ffc000 67%);
212 | background: -ms-radial-gradient(center top, farthest-corner, #F9E67B 10%, #ffc000 67%);
213 | background: radial-gradient(center top, farthest-corner, #F9E67B 10%, #ffc000 67%);
214 | }
215 | a.button:active,
216 | .button:active {
217 | background:#ffc000;
218 | color:#584B00;
219 | text-shadow:1px 1px 1px #fff;
220 | -webkit-box-shadow: rgba(0,0,0,0.7) 0px 1px 4px inset;
221 | -moz-box-shadow: rgba(0,0,0,0.7) 0px 1px 4px inset;
222 | box-shadow: rgba(0,0,0,0.7) 0px 1px 4px inset;
223 | }
224 |
225 | .table {
226 | width:100%;
227 | }
228 | .table th {
229 | padding:5px 7px;
230 | font-weight:normal;
231 | text-align:left;
232 | font-size:16px;
233 | }
234 | .table td {
235 | padding:5px 7px;
236 | }
237 | .table tr {
238 | border-bottom:1px solid #ddd;
239 | }
240 | .table tr:last-child {
241 | border:0;
242 | }
243 |
244 | .warning {
245 | color:#fff;
246 | padding:8px 14px;
247 | background:#FF3E31;
248 | -webkit-border-radius:3px;
249 | -moz-border-radius:3px;
250 | border-radius:3px;
251 | -webkit-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
252 | -moz-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
253 | box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
254 | }
255 | .success {
256 | color:#fff;
257 | background:#4ABF3B;
258 | padding:8px 14px;
259 | -webkit-border-radius:3px;
260 | -moz-border-radius:3px;
261 | border-radius:3px;
262 | -webkit-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
263 | -moz-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
264 | box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
265 | }
266 | .message {
267 | color:#3F4256;
268 | background:#F9E678;
269 | padding:8px 14px;
270 | -webkit-border-radius:3px;
271 | -moz-border-radius:3px;
272 | border-radius:3px;
273 | -webkit-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
274 | -moz-box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
275 | box-shadow: rgba(0,0,0,0.3) 0px 1px 2px;
276 | }
277 |
278 |
279 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
280 | .header {
281 | margin: 0 0 0.4em;
282 | padding: 0.4em 0 0.4em;
283 | }
284 | }
285 |
286 | @media only screen and (max-width:768px) { /* Tablet custom styles */
287 | }
--------------------------------------------------------------------------------
/fresh/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Fresh" by Renat Rafikov */
2 | html {
3 | overflow-x:hidden;
4 | }
5 | body {
6 | font-family:tahoma, arial, sans-serif;
7 | color:#111;
8 | }
9 |
10 | a { color:#58a22c; }
11 | a:hover { color:#333; }
12 | a:visited { color:#7bbe53; }
13 |
14 | ul li, ol li {
15 | padding:0 0 0.4em 0;
16 | }
17 |
18 |
19 | .container {
20 | max-width:1300px;
21 | margin:0 auto;
22 | }
23 |
24 | .header {
25 | margin:0;
26 | padding:0 2% 0 2%;
27 | border-top:5px solid #58a22c;
28 | background:#fbfaf8;
29 | position:relative;
30 | z-index:2;
31 | }
32 | .header:before {
33 | content:"";
34 | display:block!important;
35 | height:100%;
36 | width:7000px;
37 | position:absolute;
38 | left:-2000px;
39 | top:-5px;
40 | border-top:5px solid #58a22c;
41 | background:#fbfaf8;
42 | z-index:-1;
43 | }
44 |
45 | .logo {
46 | float:left;
47 | display:inline-block;
48 | padding:1.3em 0 0;
49 | font-size:24px;
50 | color:#333;
51 | }
52 |
53 | .menu_main {
54 | width:60%;
55 | float:right;
56 | text-align:right;
57 | font-size:20px;
58 | margin:0;
59 | }
60 |
61 | .menu_main li {
62 | display:inline-block;
63 | }
64 |
65 | .menu_main li a {
66 | display:inline-block;
67 | height:85px;
68 | line-height:85px;
69 | padding:0 11px;
70 | color:#58a22c;
71 | text-transform:uppercase;
72 | }
73 | .menu_main li a:hover {
74 | color:#333;
75 | }
76 | .menu_main li a:visited {
77 | color:#7bbe53;
78 | }
79 |
80 | .menu_main li.active {
81 | background:#fff;
82 | position: relative;
83 | bottom:-12px;
84 | -webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 3px;
85 | -moz-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 3px;
86 | box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 3px;
87 | }
88 |
89 | .menu_main li.active a {
90 | color:#58a22c;
91 | text-decoration:none;
92 | cursor:default;
93 | position: relative;
94 | top: -4px;
95 | }
96 |
97 | .menu_main li.active:after {
98 | content:"";
99 | position:absolute;
100 | z-index:-1;
101 | bottom:15px;
102 | left:10px;
103 | width:50%;
104 | height:20%;
105 | -webkit-box-shadow:0 15px 10px rgba(0, 0, 0, 0.25);
106 | -moz-box-shadow:0 15px 10px rgba(0, 0, 0, 0.25);
107 | box-shadow:0 15px 10px rgba(0, 0, 0, 0.25);
108 | -webkit-transform:rotate(-4deg);
109 | -moz-transform:rotate(-4deg);
110 | -o-transform:rotate(-4deg);
111 | transform:rotate(-4deg);
112 | }
113 |
114 | .hero {
115 | border-top:4px solid #d5f0c6;
116 | padding:20px 0 20px 2%;
117 | background:#e0ffed;
118 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#e2f7d6), to(#E0FFED));
119 | background: -webkit-linear-gradient(#e2f7d6, #E0FFED);
120 | background: -moz-linear-gradient(#e2f7d6, #E0FFED);
121 | background: -ms-linear-gradient(#e2f7d6, #E0FFED);
122 | background: -o-linear-gradient(#e2f7d6, #E0FFED);
123 | background: linear-gradient(#e2f7d6, #E0FFED);
124 | position:relative;
125 | z-index:1;
126 | }
127 | .hero:before {
128 | content:"";
129 | display:block!important;
130 | height:100%;
131 | width:7000px;
132 | position:absolute;
133 | left:-2000px;
134 | top:-4px;
135 | border-top:4px solid #d5f0c6;
136 | background:#e0ffed;
137 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#e2f7d6), to(#E0FFED));
138 | background: -webkit-linear-gradient(#e2f7d6, #E0FFED);
139 | background: -moz-linear-gradient(#e2f7d6, #E0FFED);
140 | background: -ms-linear-gradient(#e2f7d6, #E0FFED);
141 | background: -o-linear-gradient(#e2f7d6, #E0FFED);
142 | background: linear-gradient(#e2f7d6, #E0FFED);
143 | z-index:-1;
144 | }
145 |
146 | .info {
147 | margin:0 0 20px 0;
148 | }
149 |
150 | .article {
151 | padding:0 0 0 2%;
152 | }
153 |
154 | .footer {
155 | border-top:2px solid #d5f0c6;
156 | padding:2em 2% 3em 2%;
157 | color:#666;
158 | }
159 |
160 | .copyright {
161 | width:39%;
162 | float:left;
163 | }
164 |
165 | .menu_bottom {
166 | width:60%;
167 | float:right;
168 | text-align:right;
169 | margin:0;
170 | padding:0;
171 | }
172 | .menu_bottom li {
173 | display:inline-block;
174 | margin:0 0 0 7px;
175 | text-transform:uppercase;
176 | }
177 | .menu_bottom li a {
178 | color:#58a22c;
179 | display:inline-block;
180 | padding:3px 6px;
181 | }
182 | .menu_bottom li a:hover {
183 | color:#333;
184 | }
185 | .menu_bottom li.active a {
186 | text-decoration:none;
187 | cursor:default;
188 | background:#fff;
189 | -webkit-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 3px;
190 | -moz-box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 3px;
191 | box-shadow: rgba(0, 0, 0, 0.14) 0px 0px 3px;
192 | }
193 | .menu_bottom li.active a:hover {
194 | color:#58a22c;
195 | }
196 |
197 |
198 | .hero h1 {
199 | font-size:32px;
200 | color:#333;
201 | }
202 |
203 | h1, h2 {
204 | font-weight:normal;
205 | color:#58a22c;
206 | }
207 |
208 | h3, h4, h5, h6 {
209 | font-weight:bold;
210 | color:#58a22c;
211 | }
212 |
213 | h1 {
214 | font-size:22px;
215 | }
216 |
217 | .form label {
218 | display:inline-block;
219 | padding:0 0 4px 0;
220 | }
221 |
222 | a.button,
223 | .button {
224 | text-align:center;
225 | text-decoration:none;
226 | border:0;
227 | -webkit-border-radius:2px;
228 | -moz-border-radius:2px;
229 | border-radius:2px;
230 | -webkit-box-shadow:#a2dcb7 0px 5px 5px;
231 | -moz-box-shadow:#a2dcb7 0px 5px 5px;
232 | box-shadow:#a2dcb7 0px 5px 5px;
233 | background:#fff;
234 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#fff), to(#e0feeb));
235 | background:-webkit-linear-gradient(#fff, #e0feeb);
236 | background:-moz-linear-gradient(#fff, #e0feeb);
237 | background:-ms-linear-gradient(#fff, #e0feeb);
238 | background:-o-linear-gradient(#fff, #e0feeb);
239 | background:linear-gradient(#fff, #e0feeb);
240 | color:#58a22c;
241 | padding:6px 10px;
242 | font-family:verdana, sans-serif;
243 | display:inline-block;
244 | margin:5px 0 0 0;
245 | position:relative;
246 | }
247 | a.button:before {
248 | content:"";
249 | display:block!important;
250 | position:absolute;
251 | z-index:-1;
252 | padding:7px 6px;
253 | width:100%;
254 | left:-7px;
255 | height:100%;
256 | top:-7px;
257 | background:#e0feeb;
258 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#CAF0D8), to(#e0feeb));
259 | background: -webkit-linear-gradient(#CAF0D8, #e0feeb);
260 | background: -moz-linear-gradient(#CAF0D8, #e0feeb);
261 | background: -ms-linear-gradient(#CAF0D8, #e0feeb);
262 | background: -o-linear-gradient(#CAF0D8, #e0feeb);
263 | background: linear-gradient(#CAF0D8, #e0feeb);
264 | -webkit-border-radius:9px;
265 | -moz-border-radius:9px;
266 | border-radius:9px;
267 | border:1px solid #99d8b1;
268 | }
269 |
270 | a.button:hover,
271 | .button:hover {
272 | -webkit-box-shadow:#a2dcb7 0px 3px 3px;
273 | -moz-box-shadow:#a2dcb7 0px 3px 3px;
274 | box-shadow:#a2dcb7 0px 3px 3px;
275 | background:#fff;
276 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#e0feeb), to(#fff));
277 | background:-webkit-linear-gradient(#e0feeb, #fff);
278 | background:-moz-linear-gradient(#e0feeb, #fff);
279 | background:-ms-linear-gradient(#e0feeb, #fff);
280 | background:-o-linear-gradient(#e0feeb, #fff);
281 | background:linear-gradient(#e0feeb, #fff);
282 | }
283 | a.button:active,
284 | .button:active {
285 | color:#58a22c;
286 | -webkit-box-shadow:#a2dcb7 0px 2px 3px inset;
287 | -moz-box-shadow:#a2dcb7 0px 2px 3px inset;
288 | box-shadow:#a2dcb7 0px 2px 3px inset;
289 | }
290 |
291 | .table {
292 | width:100%;
293 | }
294 | .table th {
295 | padding:5px 7px;
296 | font-weight:normal;
297 | text-align:left;
298 | font-size:16px;
299 | background:#ffffff;
300 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ffffff), to(#eafae1));
301 | background:-webkit-linear-gradient(#ffffff, #eafae1);
302 | background:-moz-linear-gradient(#ffffff, #eafae1);
303 | background:-ms-linear-gradient(#ffffff, #eafae1);
304 | background:-o-linear-gradient(#ffffff, #eafae1);
305 | background:linear-gradient(#ffffff, #eafae1);
306 | }
307 | .table td {
308 | padding:5px 7px;
309 | }
310 | .table tr {
311 | border-bottom:2px solid #d5f0c6;
312 | }
313 | .table tr:last-child {
314 | border:0;
315 | }
316 |
317 | .warning {
318 | border:1px solid #c07306;
319 | color:#fff;
320 | padding:4px 14px;
321 | background:#e0901e;
322 | -webkit-border-radius:8px;
323 | -moz-border-radius:8px;
324 | border-radius:8px;
325 | }
326 | .success {
327 | border:1px solid #307904;
328 | color:#fff;
329 | background:#58a22c;
330 | padding:4px 14px;
331 | -webkit-border-radius:8px;
332 | -moz-border-radius:8px;
333 | border-radius:8px;
334 | }
335 | .message {
336 | border:1px solid #def7a0;
337 | color:#75932b;
338 | background:#f6ffe0;
339 | padding:4px 14px;
340 | -webkit-border-radius:8px;
341 | -moz-border-radius:8px;
342 | border-radius:8px;
343 | }
344 |
345 |
346 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
347 | .menu_main li a {
348 | height:auto;
349 | line-height:auto;
350 | line-height:inherit;
351 | display:inline-block;
352 | padding:7px;
353 | }
354 | .menu_main li.active {
355 | bottom:0;
356 | }
357 |
358 | .menu_main li.active a {
359 | position:static;
360 | }
361 |
362 | .header:before,
363 | .hero:before {
364 | display:none!important;
365 | }
366 | }
367 |
368 | @media only screen and (max-width:768px) { /* Tablet custom styles */
369 | .menu_main {
370 | font-size:15px;
371 | }
372 | .menu_main li a {
373 | padding:0 6px;
374 | }
375 |
376 | .header:before,
377 | .hero:before {
378 | display:none!important;
379 | }
380 | }
--------------------------------------------------------------------------------
/fruitjuice/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Fruit juice" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#111;
5 | }
6 |
7 | a { color:#ff7d01; }
8 | a:hover { text-decoration:none; }
9 | a:visited { color:#ea206c; }
10 |
11 | ul li, ol li {
12 | padding:0 0 0.4em 0;
13 | }
14 |
15 |
16 | .container {
17 | max-width:1300px;
18 | margin:0 auto;
19 | }
20 |
21 | .header {
22 | margin:0 0 2em 0;
23 | padding:0 2% 0 2%;
24 | }
25 |
26 | .logo {
27 | float:left;
28 | display:inline-block;
29 | font-size:27px;
30 | color:#ff7d01;
31 | font-family:tahoma, sans-serif;
32 | text-transform:uppercase;
33 | padding:16px 0 0 0;
34 | }
35 |
36 | .menu_main {
37 | width:50%;
38 | float:right;
39 | text-align:right;
40 | margin:0;
41 | }
42 |
43 | .menu_main li {
44 | display:inline-block;
45 | margin:0 0 0 2px;
46 | }
47 |
48 | .menu_main li a {
49 | display:inline-block;
50 | padding:30px 8px 10px 8px;
51 | background:#ffebc0;
52 | font-family:georgia, serif;
53 | color:#ff7d01;
54 | -webkit-border-radius:0 0 4px 4px;
55 | -moz-border-radius:0 0 4px 4px;
56 | border-radius:0 0 4px 4px;
57 | }
58 |
59 | .menu_main li a:hover {
60 | background:#fff4dd;
61 | }
62 |
63 | .menu_main li.active,
64 | .menu_main li.active a {
65 | text-decoration:none;
66 | cursor:default;
67 | background:none;
68 | }
69 |
70 | .info {
71 | padding:0 0 1em 2%;
72 | }
73 |
74 | .footer {
75 | padding:2em 2% 3em 2%;
76 | color:#ff7d01;
77 | }
78 |
79 | .copyright {
80 | width:49%;
81 | float:left;
82 | font-family:georgia, serif;
83 | font-style:italic;
84 | font-size:14px;
85 | }
86 |
87 | .menu_bottom {
88 | width:50%;
89 | float:right;
90 | text-align:right;
91 | margin:0;
92 | padding:0;
93 | }
94 | .menu_bottom li {
95 | display:inline-block;
96 | margin:0 0 0 7px;
97 | }
98 | .menu_bottom a,
99 | .menu_bottom a:visited {
100 | font-family:georgia, serif;
101 | font-style:italic;
102 | color:#ff7d01;
103 | }
104 | .menu_bottom li.active,
105 | .menu_bottom li.active a {
106 | text-decoration:none;
107 | cursor:default;
108 | }
109 |
110 |
111 | .hero h1 {
112 | font-size:19px;
113 | font-family:georgia, serif;
114 | font-style:italic;
115 | background:#ffebc0;
116 | display:inline-block;
117 | }
118 | .hero p {
119 | font-family:georgia, serif;
120 | font-style:italic;
121 | line-height: 1.4;
122 | }
123 |
124 | h1 {
125 | font-size:21px;
126 | }
127 |
128 | h1, h2 {
129 | font-size:19px;
130 | font-weight:normal;
131 | font-family:georgia, serif;
132 | font-style:italic;
133 | }
134 |
135 | .col_33 h2 {
136 | background:#ffebc0;
137 | display:inline-block;
138 | }
139 |
140 | h3, h4, h5, h6 {
141 | font-weight:bold;
142 | font-family:georgia, serif;
143 | font-style:italic;
144 | }
145 |
146 |
147 | .form label {
148 | display:inline-block;
149 | padding:0 0 4px 0;
150 | }
151 |
152 | a.button,
153 | .button {
154 | border:0;
155 | text-align:center;
156 | text-decoration:none;
157 | background:#8aac00;
158 | -webkit-border-radius: 4px;
159 | -moz-border-radius: 4px;
160 | border-radius: 4px;
161 | color:#fff;
162 | padding:9px 17px;
163 | font-family:verdana, sans-serif;
164 | display:inline-block;
165 | font-style:normal;
166 | }
167 | a.button:hover,
168 | .button:hover {
169 | color:#fff;
170 | background:#ff7d01;
171 | }
172 | a.button:active,
173 | .button:active {
174 | color:#b25700;
175 | text-shadow:1px 1px 1px #ffcc9c;
176 | -webkit-box-shadow:#da6a00 0px 2px 0 inset;
177 | -moz-box-shadow:#da6a00 0px 2px 0 inset;
178 | box-shadow:#da6a00 0px 2px 0 inset;
179 | background:#ff7d01;
180 | }
181 |
182 | .table {
183 | width:100%;
184 | }
185 | .table th {
186 | padding:5px 7px;
187 | font-weight:normal;
188 | text-align:left;
189 | font-size:16px;
190 | background:#ffebc0;
191 | }
192 | .table td {
193 | padding:5px 7px;
194 | }
195 | .table tr {
196 | border-bottom:1px solid #ff7d01;
197 | }
198 | .table tr:last-child {
199 | border:0;
200 | }
201 |
202 | .warning {
203 | color:#fff;
204 | padding:8px 14px;
205 | background:#ff3701;
206 | }
207 | .success {
208 | color:#fff;
209 | background:#8aac00;
210 | padding:8px 14px;
211 | }
212 | .message {
213 | background:#ffebc0;
214 | padding:8px 14px;
215 | }
216 |
217 |
218 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
219 | .menu_main li a {
220 | display:inline-block;
221 | padding:7px;
222 | -webkit-border-radius: 4px;
223 | -moz-border-radius: 4px;
224 | border-radius: 4px;
225 | }
226 | }
227 |
228 | @media only screen and (max-width:768px) { /* Tablet custom styles */
229 | }
--------------------------------------------------------------------------------
/glimpse/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Glimpse" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#898989;
5 | background:#eeeeee;
6 | }
7 |
8 | a { color:#1b737d; }
9 | a:hover { color:#278691; text-decoration:none;}
10 | a:visited { color:#1b327d; }
11 |
12 | ul li, ol li {
13 | padding:0 0 0.4em 0;
14 | }
15 |
16 |
17 | .container {
18 | max-width:1300px;
19 | margin:0 auto;
20 | }
21 |
22 | .header {
23 | margin:1px 0 0 0;
24 | padding:2em 2% 3em 2%;
25 | background:#fff;
26 | border-left:1px solid #dedede;
27 | border-right:1px solid #dedede;
28 | }
29 |
30 | .logo {
31 | float:left;
32 | display:inline-block;
33 | font-size:18px;
34 | color:#c7c5c6;
35 | }
36 |
37 | .menu_main {
38 | width:50%;
39 | float:right;
40 | text-align:right;
41 | margin:0.3em 0 0 0;
42 | font-weight:bold;
43 | }
44 |
45 | .menu_main li {
46 | display:inline-block;
47 | margin:0 0 0 7px;
48 | }
49 |
50 | .menu_main a,
51 | .menu_main a:visited {
52 | color:#1b737d;
53 | }
54 |
55 | .menu_main li.active,
56 | .menu_main li.active a {
57 | color:#898989;
58 | text-decoration:none;
59 | cursor:default;
60 | }
61 | .hero {
62 | background:#fff;
63 | border-left:1px solid #dedede;
64 | border-right:1px solid #dedede;
65 | border-bottom:1px solid #dedede;
66 | padding:0 0 1em 2%;
67 | }
68 |
69 | .article {
70 | padding:0 0 2em 2%;
71 | }
72 |
73 | .footer {
74 | padding:2em 2% 3em 2%;
75 | background:#fff;
76 | border-left:1px solid #dedede;
77 | border-right:1px solid #dedede;
78 | border-top:1px solid #dedede;
79 | }
80 |
81 | .copyright {
82 | width:49%;
83 | float:left;
84 | font-style:italic;
85 | }
86 |
87 | .menu_bottom {
88 | width:50%;
89 | float:right;
90 | text-align:right;
91 | margin:0;
92 | padding:0;
93 | font-weight:bold;
94 | }
95 | .menu_bottom a,
96 | .menu_bottom a:visited {
97 | color:#1b737d;
98 | }
99 | .menu_bottom li {
100 | display:inline-block;
101 | margin:0 0 0 7px;
102 | }
103 | .menu_bottom li.active,
104 | .menu_bottom li.active a {
105 | color:#666;
106 | text-decoration:none;
107 | cursor:default;
108 | }
109 |
110 |
111 | .hero h1 {
112 | font-size:20px;
113 | font-style:italic;
114 | display:inline-block;
115 | clear:both;
116 | background:#eee;
117 | margin-bottom: 0;
118 | }
119 |
120 | h1, h2 {
121 | font-weight:normal;
122 | }
123 |
124 | h3, h4, h5, h6 {
125 | font-weight:bold;
126 | }
127 |
128 | h1 {
129 | font-size:22px;
130 | }
131 |
132 | .form label {
133 | display:inline-block;
134 | padding:0 0 4px 0;
135 | }
136 |
137 | a.button,
138 | .button {
139 | border:6px solid #898989;
140 | text-align:center;
141 | text-decoration:none;
142 | -webkit-border-radius:4px;
143 | -moz-border-radius:4px;
144 | border-radius:4px;
145 | background:#bfbfbf;
146 | color:#fff;
147 | padding:6px 15px;
148 | font-family:verdana, sans-serif;
149 | text-shadow:1px 1px 0px #898989;
150 | display:inline-block;
151 | }
152 | a.button:hover,
153 | .button:hover {
154 | color:#898989;
155 | text-shadow:none;
156 | background:-webkit-gradient(linear, 0 0, center center, from(#c9c9c9), to(#bfbfbf));
157 | background:-webkit-linear-gradient(#c9c9c9 50%, #bfbfbf 50%);
158 | background:-moz-linear-gradient(#c9c9c9 50%, #bfbfbf 50%);
159 | background:-ms-linear-gradient(#c9c9c9 50%, #bfbfbf 50%);
160 | background:-o-linear-gradient(#c9c9c9 50%, #bfbfbf 50%);
161 | background:linear-gradient(#c9c9c9 50%, #bfbfbf 50%);
162 | }
163 | a.button:active,
164 | .button:active {
165 | color:#8c1515;
166 | text-shadow:none;
167 | background:#898989;
168 | color:#dedede;
169 | text-shadow:none;
170 | -webkit-box-shadow:#454545 0px 0px 7px inset;
171 | -moz-box-shadow:#454545 0px 0px 7px inset;
172 | box-shadow:#454545 0px 0px 7px inset;
173 | }
174 |
175 | .table {
176 | width:100%;
177 | }
178 | .table th {
179 | padding:5px 7px;
180 | font-weight:normal;
181 | text-align:left;
182 | font-size:1.2em;
183 | }
184 | .table td {
185 | padding:5px 7px;
186 | }
187 | .table tr {
188 | border-bottom:1px solid #ddd;
189 | }
190 | .table tr:last-child {
191 | border:0;
192 | }
193 |
194 | .warning {
195 | color:#fff;
196 | padding:9px 14px;
197 | background:#dca623;
198 | -webkit-border-radius:4px;
199 | -moz-border-radius:4px;
200 | border-radius:4px;
201 | }
202 | .success {
203 | color:#fff;
204 | background:#578647;
205 | padding:9px 14px;
206 | -webkit-border-radius:4px;
207 | -moz-border-radius:4px;
208 | border-radius:4px;
209 | }
210 | .message {
211 | background:#fff;
212 | padding:9px 14px;
213 | -webkit-border-radius:4px;
214 | -moz-border-radius:4px;
215 | border-radius:4px;
216 | }
217 |
218 |
219 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
220 | .header {
221 | padding-bottom:0;
222 | }
223 | }
224 |
225 | @media only screen and (max-width:768px) { /* Tablet custom styles */
226 | }
--------------------------------------------------------------------------------
/humble/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Humble" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#000;
5 | background:#58595b;
6 | }
7 |
8 | a { color:#000; }
9 | a:hover { color:#444; }
10 | a:visited { color:#666; }
11 |
12 | ul li, ol li {
13 | padding:0 0 0.4em 0;
14 | }
15 |
16 |
17 | .container {
18 | max-width:1300px;
19 | margin:0 auto;
20 | }
21 |
22 | .header {
23 | margin:13px 0 11px 0;
24 | padding:1em 2% 0 2%;
25 | border-top:1px solid #fff;
26 | }
27 |
28 | .logo {
29 | float:left;
30 | display:inline-block;
31 | font-size:24px;
32 | color:#fff;
33 | }
34 |
35 | .menu_main {
36 | width:50%;
37 | float:right;
38 | text-align:right;
39 | margin:0.3em 0 0 0;
40 | font-size:15px;
41 | }
42 |
43 | .menu_main li {
44 | display:inline-block;
45 | margin:0 0 0 7px;
46 | }
47 |
48 | .menu_main li a {
49 | color:#fff;
50 | }
51 | .menu_main li a:hover {
52 | color:#dad9d9;
53 | }
54 | .menu_main li a:visited {
55 | color:#b3b3b3;
56 | }
57 |
58 | .menu_main li.active,
59 | .menu_main li.active a {
60 | color:#fff;
61 | text-decoration:none;
62 | cursor:default;
63 | position:relative;
64 | }
65 |
66 | .menu_main li.active:before {
67 | content:"";
68 | display:block;
69 | width: 0;
70 | height: 0;
71 | border-left: 5px solid transparent;
72 | border-right: 5px solid transparent;
73 | border-bottom: 5px solid #fff;
74 | position:absolute;
75 | left:50%;
76 | bottom:-12px;
77 | margin:0 0 0 -2px;
78 | }
79 |
80 |
81 | .hero {
82 | border:2px solid #fff;
83 | margin:0 1% 24px 1%;
84 | padding:10px 0 0 1%;
85 | color:#fff;
86 | }
87 | .hero a {
88 | color:#fff;
89 | }
90 | .hero a:hover {
91 | color:#eee;
92 | }
93 |
94 | .article {
95 | background:#fff;
96 | padding:7px 0 3em 2%;
97 | }
98 |
99 | .footer {
100 | padding:12px 2% 2em 2%;
101 | color:#aaaaaa;
102 | }
103 |
104 | .copyright {
105 | width:49%;
106 | float:left;
107 | }
108 |
109 | .menu_bottom {
110 | width:50%;
111 | float:right;
112 | text-align:right;
113 | margin:0;
114 | padding:0;
115 | }
116 | .menu_bottom li {
117 | display:inline-block;
118 | margin:0 0 0 7px;
119 | }
120 |
121 | .menu_bottom li a {
122 | color:#fff;
123 | }
124 | .menu_bottom li a:hover {
125 | color:#dad9d9;
126 | }
127 | .menu_bottom li a:visited {
128 | color:#b3b3b3;
129 | }
130 |
131 | .menu_bottom li.active,
132 | .menu_bottom li.active a {
133 | color:#fff;
134 | text-decoration:none;
135 | cursor:default;
136 | position:relative;
137 | }
138 |
139 | .menu_bottom li.active:before {
140 | content:"";
141 | display:block;
142 | width: 0;
143 | height: 0;
144 | border-left: 5px solid transparent;
145 | border-right: 5px solid transparent;
146 | border-top: 5px solid #fff;
147 | position:absolute;
148 | left:50%;
149 | top:-12px;
150 | margin:0 0 0 -2px;
151 | }
152 |
153 | .hero h1 {
154 | font-size:22px;
155 | color:#fff;
156 | }
157 |
158 | .hero h1, .hero h2, .hero h3, .hero h4 {
159 | color:#fff;
160 | }
161 |
162 | h1, h2 {
163 | font-weight:normal;
164 | color:#010101;
165 | }
166 |
167 | h3, h4, h5, h6 {
168 | font-weight:bold;
169 | color:#010101;
170 | }
171 |
172 | h1 {
173 | font-size:22px;
174 | }
175 |
176 | .form label {
177 | display:inline-block;
178 | padding:0 0 4px 0;
179 | }
180 |
181 | a.button,
182 | .button {
183 | border:1px solid #000;
184 | text-align:center;
185 | text-decoration:none;
186 | -webkit-border-radius:4px;
187 | -moz-border-radius:4px;
188 | border-radius:4px;
189 | -webkit-box-shadow:#000 0px 0px 1px;
190 | -moz-box-shadow:#000 0px 0px 1px;
191 | box-shadow:#000 0px 0px 1px;
192 | background:#fff;
193 | color:#000;
194 | padding:7px 12px;
195 | font-family:verdana, sans-serif;
196 | display:inline-block;
197 | }
198 | a.button:hover,
199 | .button:hover {
200 | border:2px solid #000;
201 | padding:6px 11px;
202 | color:#616161;
203 | }
204 | a.button:active,
205 | .button:active {
206 | color:#000;
207 | border:1px solid #000;
208 | padding:7px 12px;
209 | -webkit-box-shadow:#888 0px 3px 2px inset;
210 | -moz-box-shadow:#888 0px 3px 2px inset;
211 | box-shadow:#888 0px 3px 2px inset;
212 | }
213 |
214 | .table {
215 | width:100%;
216 | }
217 | .table th {
218 | padding:5px 7px;
219 | font-weight:normal;
220 | text-align:left;
221 | font-size:15px;
222 | }
223 | .table td {
224 | padding:5px 7px;
225 | }
226 | .table tr {
227 | border-bottom:1px solid #000;
228 | }
229 | .table tr:last-child {
230 | border:0;
231 | }
232 |
233 | .warning {
234 | border:1px solid #8e011e;
235 | color:#fff;
236 | padding:8px 14px;
237 | background:#c21c3f;
238 | -webkit-border-radius:4px;
239 | -moz-border-radius:4px;
240 | border-radius:4px;
241 | }
242 | .success {
243 | border:1px solid #1c8b31;
244 | color:#fff;
245 | background:#1c8b31;
246 | padding:8px 14px;
247 | -webkit-border-radius:4px;
248 | -moz-border-radius:4px;
249 | border-radius:4px;
250 | }
251 | .message {
252 | border:1px solid #ac9701;
253 | color:#fff;
254 | background:#e2cf48;
255 | padding:8px 14px;
256 | -webkit-border-radius:4px;
257 | -moz-border-radius:4px;
258 | border-radius:4px;
259 | }
260 |
261 |
262 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
263 | .header {
264 | margin-top:3px;
265 | }
266 | .menu_main a {
267 | display:inline-block;
268 | padding:2px 7px 7px 7px!important;
269 | }
270 | }
271 |
272 | @media only screen and (max-width:768px) { /* Tablet custom styles */
273 | }
--------------------------------------------------------------------------------
/isimple/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "iSimple" by Renat Rafikov */
2 | body {
3 | background:#f2f2f2;
4 | font-family:arial, sans-serif;
5 | }
6 |
7 | a { color:#0085c5; }
8 | a:hover { text-decoration:none; }
9 | a:visited { color:#4a00c5; }
10 |
11 | ul li, ol li {
12 | padding:0 0 0.4em 0;
13 | }
14 |
15 |
16 | .container {
17 | max-width:1300px;
18 | margin:0 auto;
19 | }
20 |
21 | .header {
22 | margin:1px 0 0.5em 0;
23 | padding:1.5em 3% 0 3%;
24 | }
25 |
26 | .logo {
27 | float:left;
28 | display:inline-block;
29 | font-size:18px;
30 | text-shadow:1px 1px 1px #ffffff;
31 | }
32 |
33 | .menu_main {
34 | width:50%;
35 | float:right;
36 | text-align:right;
37 | margin:0.3em 0 0 0;
38 | font-size:12px;
39 | }
40 | .menu_main a,
41 | .menu_main a:hover {
42 | color:#0085c5;
43 | }
44 | .menu_main li {
45 | display:inline-block;
46 | margin:0 0 0 4px;
47 | }
48 | .menu_main li.active,
49 | .menu_main li.active a {
50 | color:#000;
51 | text-decoration:none;
52 | cursor:default;
53 | }
54 |
55 | .info {
56 | padding:0 1% 1em 1%;
57 | }
58 |
59 | .hero {
60 | background:#fff;
61 | border:1px solid #fff;
62 | -webkit-border-radius:5px;
63 | -moz-border-radius:5px;
64 | border-radius:5px;
65 | -webkit-box-shadow:#8b8b8b 0px 0px 5px inset;
66 | -moz-box-shadow:#8b8b8b 0px 0px 5px inset;
67 | box-shadow:#8b8b8b 0px 0px 5px inset;
68 | padding:15px 0 15px 2%;
69 | margin:0 0 15px 0;
70 | }
71 |
72 | .hero h1 {
73 | font-size:24px;
74 | font-size:18px;
75 | color:#3d3d3d;
76 | }
77 |
78 | .article {
79 | background:#fff;
80 | border:1px solid #cbcbcb;
81 | -webkit-border-radius:5px;
82 | -moz-border-radius:5px;
83 | border-radius:5px;
84 | -webkit-box-shadow:#8b8b8b 0px 0px 3px;
85 | -moz-box-shadow:#8b8b8b 0px 0px 3px;
86 | box-shadow:#8b8b8b 0px 0px 3px;
87 | padding:15px 0 15px 2%;
88 | }
89 |
90 | .footer {
91 | padding:1em 3% 3em 3%;
92 | color:#717171;
93 | font-size:12px;
94 | }
95 |
96 | .copyright {
97 | width:49%;
98 | float:left;
99 | text-shadow:1px 1px 1px #ffffff;
100 | }
101 |
102 | .menu_bottom {
103 | width:50%;
104 | float:right;
105 | text-align:right;
106 | margin:0;
107 | padding:0;
108 | font-size:12px;
109 | }
110 | .menu_bottom a,
111 | .menu_bottom a:hover {
112 | color:#0085c5;
113 | }
114 | .menu_bottom li {
115 | display:inline-block;
116 | margin:0 0 0 4px;
117 | }
118 | .menu_bottom li.active,
119 | .menu_bottom li.active a {
120 | color:#666;
121 | text-decoration:none;
122 | cursor:default;
123 | }
124 |
125 | h1 {
126 | font-size:22px;
127 | }
128 | h1, h2, h3, h4 {
129 | font-weight:normal;
130 | }
131 | h5, h6 {
132 | font-weight:bold;
133 | }
134 |
135 | .form label {
136 | display:inline-block;
137 | padding:0 0 4px 0;
138 | }
139 |
140 | a.button,
141 | .button {
142 | border:0;
143 | text-align:center;
144 | text-decoration:none;
145 | -webkit-border-radius:4px;
146 | -moz-border-radius:4px;
147 | border-radius:4px;
148 | -webkit-box-shadow:#999 0px 0px 1px;
149 | -moz-box-shadow:#999 0px 0px 1px;
150 | box-shadow:#999 0px 0px 1px;
151 | background:#4aa6d6;
152 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#1f7daa), to(#4aa6d6));
153 | background:-webkit-linear-gradient(#1f7daa, #4aa6d6);
154 | background:-moz-linear-gradient(#1f7daa, #4aa6d6);
155 | background:-ms-linear-gradient(#1f7daa, #4aa6d6);
156 | background:-o-linear-gradient(#1f7daa, #4aa6d6);
157 | background:linear-gradient(#1f7daa, #4aa6d6);
158 | color:#fff;
159 | padding:10px 20px;
160 | font-family:verdana, sans-serif;
161 | text-shadow:1px 1px 1px #12455d;
162 | display:inline-block;
163 | }
164 | a.button:hover,
165 | .button:hover {
166 | color:#fff;
167 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#4aa6d6), to(#1f7daa));
168 | background:-webkit-linear-gradient(#4aa6d6, #1f7daa);
169 | background:-moz-linear-gradient(#4aa6d6, #1f7daa);
170 | background:-ms-linear-gradient(#4aa6d6, #1f7daa);
171 | background:-o-linear-gradient(#4aa6d6, #1f7daa);
172 | background:linear-gradient(#4aa6d6, #1f7daa);
173 | }
174 | a.button:active,
175 | .button:active {
176 | color:#093950;
177 | text-shadow:1px 1px 1px #7ac8f0;
178 | -webkit-box-shadow:#093950 0px 2px 3px inset;
179 | -moz-box-shadow:#093950 0px 2px 3px inset;
180 | box-shadow:#093950 0px 2px 3px inset;
181 | }
182 |
183 | .table {
184 | width:100%;
185 | }
186 | .table th {
187 | padding:5px 7px;
188 | font-weight:bold;
189 | text-align:left;
190 | font-size:0.9em;
191 | border-bottom:1px solid #ddd;
192 | }
193 | .table td {
194 | padding:9px 7px;
195 | border-left:1px solid #ddd;
196 | }
197 | .table tr td:first-child {border-left:0;}
198 |
199 | .table tr {
200 | border-bottom:1px solid #fbfbfb;
201 | }
202 | .table tr:nth-child(even) {
203 | background:#F2F2F2;
204 | }
205 |
206 | .table tr:last-child {
207 | border:0;
208 | }
209 |
210 | .warning {
211 | border:1px solid #ec252e;
212 | background:#ec252e;
213 | color:#fff;
214 | padding:8px 14px;
215 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ec252e), to(#F05057));
216 | background:-webkit-linear-gradient(#ec252e, #F05057);
217 | background:-moz-linear-gradient(#ec252e, #F05057);
218 | background:-ms-linear-gradient(#ec252e, #F05057);
219 | background:-o-linear-gradient(#ec252e, #F05057);
220 | background:linear-gradient(#ec252e, #F05057);
221 | -webkit-border-radius:8px;
222 | -moz-border-radius:8px;
223 | border-radius:8px;
224 | }
225 | .success {
226 | border:1px solid #6e9e30;
227 | color:#fff;
228 | background:#0bbe2e;
229 | padding:8px 14px;
230 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#6e9e30), to(#87c03b));
231 | background:-webkit-linear-gradient(#6e9e30, #87c03b);
232 | background:-moz-linear-gradient(#6e9e30, #87c03b);
233 | background:-ms-linear-gradient(#6e9e30, #87c03b);
234 | background:-o-linear-gradient(#6e9e30, #87c03b);
235 | background:linear-gradient(#6e9e30, #87c03b);
236 | -webkit-border-radius:8px;
237 | -moz-border-radius:8px;
238 | border-radius:8px;
239 | }
240 | .message {
241 | border:1px solid #2180ff;
242 | color:#1f49bf;
243 | background:#bcd9ff;
244 | padding:8px 14px;
245 | -webkit-border-radius:8px;
246 | -moz-border-radius:8px;
247 | border-radius:8px;
248 | }
249 |
250 |
251 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
252 | }
253 |
254 | @media only screen and (max-width:768px) { /* Tablet custom styles */
255 | }
--------------------------------------------------------------------------------
/maple/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Maple" by Alexandr Loginov. http://atatakobry.tumblr.com */
2 | body {
3 | font-family:'arial narrow', arial, sans-serif;
4 | font-size:16px;
5 | line-height:1.2;
6 | background-color:#f2f2f2;
7 | color:#6e6e6e;
8 | }
9 |
10 | p {
11 | margin:0.8em 0 0.8em 0;
12 | }
13 |
14 | .info a, .info a:visited {
15 | color:#e45338;
16 | background-color:#f6ecea;
17 | outline:none;
18 | }
19 |
20 | .info a:hover {
21 | color:#8b2f20;
22 | background-color:#f6ecea;
23 | outline:none;
24 | }
25 |
26 | ul li, ol li {
27 | padding:0 0 0.2em 0;
28 | }
29 |
30 |
31 | .container {
32 | max-width:1300px;
33 | margin:auto;
34 | background-color:#f2f2f2;
35 | }
36 |
37 | .header {
38 | font-size:20px;
39 | padding:1.5em 2% 1.5em 2%;
40 | background-color:#e45338;
41 | margin:0;
42 | }
43 |
44 | .logo {
45 | float:left;
46 | display:inline-block;
47 | font-size:28px;
48 | letter-spacing:0.25em;
49 | color:#fff;
50 | margin:0;
51 | padding:0;
52 | }
53 |
54 | .menu_main {
55 | width:50%;
56 | float:right;
57 | text-align:right;
58 | margin:0;
59 | padding:0;
60 | font-size:14px;
61 | text-transform:uppercase;
62 | letter-spacing:0.18em;
63 | color:#fff;
64 | }
65 |
66 | .menu_main li {
67 | display:inline-block;
68 | margin:0.2em;
69 | padding:0.4em;
70 | border: 1px dashed #8b2f20;
71 | }
72 |
73 | .menu_main li a {
74 | text-decoration:none;
75 | color:#fff;
76 | }
77 | .menu_main li a:hover {
78 | text-decoration:underline;
79 | }
80 |
81 | .menu_main li.active,
82 | .menu_main li.active a {
83 | cursor:default;
84 | background-color:#8b2f20;
85 | text-decoration:none;
86 | }
87 |
88 | .info {
89 | padding:2em 2% 2em 2%;
90 | margin:0;
91 | }
92 |
93 | .footer {
94 | color:#fff;
95 | font-size:20px;
96 | padding:1.5em 2% 1.5em 2%;
97 | background-color:#e45338;
98 | }
99 |
100 | .copyright {
101 | width:49%;
102 | float:left;
103 | font-size:18px;
104 | margin-top:0.25em;
105 | }
106 |
107 | .menu_bottom {
108 | width:50%;
109 | float:right;
110 | text-align:right;
111 | margin:0;
112 | padding:0;
113 | font-size:14px;
114 | text-transform:uppercase;
115 | letter-spacing:0.18em;
116 | color:#fff;
117 | }
118 |
119 | .menu_bottom li {
120 | display:inline-block;
121 | margin:0.2em;
122 | padding:0.4em;
123 | border: 1px dashed #8b2f20;
124 | }
125 |
126 | .menu_bottom li a {
127 | text-decoration:none;
128 | color:#fff;
129 | }
130 | .menu_bottom li a:hover {
131 | text-decoration:underline;
132 | }
133 | .menu_bottom li.active,
134 | .menu_bottom li.active a {
135 | cursor:default;
136 | background-color:#8b2f20;
137 | text-decoration:none;
138 | }
139 |
140 |
141 | .hero h1 {
142 | font-size:20px;
143 | font-weight:bold;
144 | text-transform:uppercase;
145 | margin:0.8em 0 0.8em 0;
146 | padding:0;
147 | }
148 |
149 | h1 {
150 | font-weight:bold;
151 | color:#2d2d2d;
152 | font-size:24px;
153 | margin:0.6em 0 0.6em 0;
154 | padding:0;
155 | }
156 |
157 | h2 {
158 | font-weight:bold;
159 | color:#4d4d4d;
160 | font-size:20px;
161 | margin:0.8em 0 0.8em 0;
162 | padding:0;
163 | }
164 |
165 | h3, h4, h5, h6 {
166 | font-weight:bold;
167 | color:#6f6f6f;
168 | margin:1em 0 1em 0;
169 | padding:0;
170 | }
171 |
172 | .form label {
173 | display:inline-block;
174 | padding:0 0 4px 0;
175 | }
176 |
177 | select, input, textarea, label {
178 | font-size:14px;
179 | }
180 |
181 | a.button,
182 | .button {
183 | display:inline-block;
184 | zoom:1; /* zoom and *display = ie7 hack for display:inline-block */
185 | vertical-align:baseline;
186 | outline:none;
187 | cursor:pointer;
188 | margin:0 0.1em;
189 | padding:0.6em 1.5em 0.6em 1.5em;
190 | text-align:center;
191 | text-decoration:none;
192 | color:#6d6d6d;
193 | font:13px/100% arial, sans-serif;
194 | text-shadow:0 1px 1px rgba(0, 0, 0, 0.3);
195 | border:1px solid #b7b7b7;
196 | -webkit-border-radius:0.5em;
197 | -moz-border-radius:0.5em;
198 | -ms-border-radius:0.5em;
199 | -o-border-radius:0.5em;
200 | border-radius:0.5em;
201 | -webkit-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
202 | -moz-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
203 | -ms-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
204 | -o-box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
205 | box-shadow:0 1px 2px rgba(0, 0, 0, 0.2);
206 | background-color:#fff;
207 | background-image:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#ededed));
208 | background-image:-moz-linear-gradient(top, #fff, #ededed);
209 | background-image:-ms-linear-gradient(top, #fff, #ededed);
210 | background-image:-o-linear-gradient(top, #fff, #ededed);
211 | background-image:linear-gradient(top, #fff, #ededed);
212 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed');
213 | }
214 |
215 | a.button:hover,
216 | .button:hover {
217 | text-decoration:none;
218 | background-color:#eee;
219 | background-image:-webkit-gradient(linear, left top, left bottom, from(#fff), to(#dcdcdc));
220 | background-image:-moz-linear-gradient(top, #fff, #dcdcdc);
221 | background-image:-ms-linear-gradient(top, #fff, #dcdcdc);
222 | background-image:-o-linear-gradient(top, #fff, #dcdcdc);
223 | background-image:linear-gradient(top, #fff, #dcdcdc);
224 | filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#dcdcdc');
225 | color:#6d6d6d;
226 | }
227 |
228 | a.button:active,
229 | .button:active {
230 | position:relative;
231 | top:1px;
232 | color:#6d6d6d;
233 | background-color:#ededed;
234 | background-image:-webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
235 | background-image:-moz-linear-gradient(top, #ededed, #fff);
236 | background-image:-ms-linear-gradient(top, #ededed, #fff);
237 | background-image:-o-linear-gradient(top, #ededed, #fff);
238 | background-image:linear-gradient(top, #ededed, #fff);
239 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
240 | }
241 |
242 | .table {
243 | width:100%;
244 | }
245 | .table th {
246 | padding:5px 7px;
247 | text-align:left;
248 | font-size:1em;
249 | color:#8f8f8f;
250 | text-transform:uppercase;
251 | letter-spacing:0.3em;
252 | }
253 | .table td {
254 | padding:8px 7px;
255 | }
256 | .table tr {
257 | border-bottom:1px solid #887777;
258 | }
259 | .table tr:last-child {
260 | border:0;
261 | }
262 |
263 | .warning {
264 | color:#2d2d2d;
265 | text-align:center;
266 | border:0.4em dotted #e45338;
267 | padding:8px 14px;
268 | }
269 | .success {
270 | color:#2d2d2d;
271 | text-align:center;
272 | border:0.4em dotted #2fac7b;
273 | padding:8px 14px;
274 | }
275 | .message {
276 | color:#2d2d2d;
277 | text-align:center;
278 | border:0.4em dotted #6d6d6d;
279 | padding:8px 14px;
280 | }
281 |
282 |
283 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
284 | }
285 |
286 | @media only screen and (max-width:768px) { /* Tablet custom styles */
287 | }
--------------------------------------------------------------------------------
/mentol/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Mentol" by Renat Rafikov */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Kelly+Slab&subset=latin,cyrillic);
5 | /* End webfonts */
6 |
7 |
8 | body {
9 | background:#fbfbf1;
10 | font-family:arial, sans-serif;
11 | color:#7d7b71;
12 | }
13 |
14 | a { color:#7d7b71; }
15 | a:hover { color:#67e594; }
16 | a:visited { color:#8d739e; }
17 |
18 | ul li, ol li {
19 | padding:0 0 0.4em 0;
20 | }
21 |
22 | .container {
23 | max-width:1300px;
24 | margin:0 auto;
25 | }
26 |
27 | .header {
28 | margin:1px 0 3em 0;
29 | padding:2em 2% 0 2%;
30 | }
31 |
32 | .logo {
33 | float:left;
34 | display:inline-block;
35 | font-size:18px;
36 | color:#67e594;
37 | }
38 |
39 | .menu_main {
40 | width:50%;
41 | float:right;
42 | text-align:right;
43 | margin:-0.3em 0 0 0;
44 | }
45 |
46 | .menu_main ul {
47 | width:auto;
48 | border:2px solid #f1eee7;
49 | display: inline-block;
50 | padding:10px 17px 10px 10px;
51 | }
52 |
53 | .menu_main li {
54 | display:inline-block;
55 | margin:0 0 0 7px;
56 | font-weight:bold;
57 | padding:0;
58 | }
59 |
60 | .menu_main li a,
61 | .menu_main li a:visited {
62 | color:#8d8b84;
63 | }
64 | .menu_main li a:hover,
65 | .menu_main li a:visited:hover {
66 | color:#67e594;
67 | }
68 |
69 | .menu_main li.active,
70 | .menu_main li.active a:hover,
71 | .menu_main li.active a {
72 | color:#52504a;
73 | text-decoration:none;
74 | cursor:default;
75 | }
76 |
77 | .info {
78 | padding:0 0 1em 2%;
79 | }
80 |
81 | .footer {
82 | padding:2em 2% 3em 2%;
83 | color:#666;
84 | }
85 |
86 | .copyright {
87 | width:49%;
88 | float:left;
89 | font-family:'Kelly Slab', georgia, serif;
90 | color:#67e594;
91 | font-size:14px;
92 | }
93 |
94 | .menu_bottom {
95 | width:50%;
96 | float:right;
97 | text-align:right;
98 | margin:0;
99 | padding:0;
100 | }
101 | .menu_bottom li {
102 | display:inline-block;
103 | margin:0 0 0 7px;
104 | font-weight:bold;
105 | }
106 | .menu_bottom li a,
107 | .menu_bottom li a:visited {
108 | color:#8d8b84;
109 | }
110 | .menu_bottom li a:hover,
111 | .menu_bottom li a:visited:hover {
112 | color:#67e594;
113 | }
114 |
115 | .menu_bottom li.active,
116 | .menu_bottom li.active a:hover,
117 | .menu_bottom li.active a {
118 | color:#52504a;
119 | text-decoration:none;
120 | cursor:default;
121 | }
122 |
123 |
124 | .hero h1 {
125 | font-size:29px;
126 | color:#67e594;
127 | }
128 |
129 | h1, h2 {
130 | font-family:'Kelly Slab', georgia, serif;
131 | font-weight:normal;
132 | color:#67e594;
133 | }
134 |
135 | h3, h4, h5, h6 {
136 | font-family:'Kelly Slab', georgia, serif;
137 | font-weight:normal;
138 | color:#67e594;
139 | }
140 |
141 | h1 {
142 | font-size:22px;
143 | }
144 |
145 | .form label {
146 | display:inline-block;
147 | padding:0 0 4px 0;
148 | }
149 |
150 | a.button,
151 | .button {
152 | border:1px solid #51d480;
153 | text-align:center;
154 | text-decoration:none;
155 | background:#67e594;
156 | color:#fff;
157 | padding:10px 20px;
158 | font-family:verdana, sans-serif;
159 | display:inline-block;
160 | }
161 | a.button:hover,
162 | .button:hover {
163 | color:#fff;
164 | background:#38C76B;
165 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#67e594), to(#38C76B));
166 | background: -webkit-linear-gradient(#67e594, #38C76B);
167 | background: -moz-linear-gradient(#67e594, #38C76B);
168 | background: -ms-linear-gradient(#67e594, #38C76B);
169 | background: -o-linear-gradient(#67e594, #38C76B);
170 | background: linear-gradient(#67e594, #38C76B);
171 | border:1px solid #3ab566;
172 | text-shadow:1px 1px 0px #51d480;
173 | -webkit-box-shadow: rgba(0,0,0,0.2) 0px 0px 2px;
174 | -moz-box-shadow: rgba(0,0,0,0.2) 0px 0px 2px;
175 | box-shadow: rgba(0,0,0,0.2) 0px 0px 2px;
176 | }
177 | a.button:active,
178 | .button:active {
179 | color:#35b060;
180 | background:#67e594;
181 | text-shadow:1px 1px 1px #b6efca;
182 | -webkit-box-shadow:#51d480 0px 0 3px inset;
183 | -moz-box-shadow:#51d480 0px 0 3px inset;
184 | box-shadow:#51d480 0px 0 3px inset;
185 | border:1px solid #51d480;
186 | }
187 |
188 | .table {
189 | width:100%;
190 | }
191 | .table th {
192 | padding:5px 7px;
193 | font-weight:normal;
194 | text-align:left;
195 | font-size:16px;
196 | }
197 | .table td {
198 | padding:8px 7px;
199 | }
200 | .table tr {
201 | border-bottom:1px solid #dddddd;
202 | }
203 |
204 | .warning {
205 | color:#fff;
206 | padding:9px 14px;
207 | background:#d12c33;
208 | -webkit-box-shadow: #8d8b84 0px 0px 6px inset;
209 | -moz-box-shadow: #8d8b84 0px 0px 6px inset;
210 | box-shadow: #8d8b84 0px 0px 6px inset;
211 | }
212 | .success {
213 | color:#fff;
214 | background:#67e594;
215 | padding:9px 14px;
216 | -webkit-box-shadow: #8d8b84 0px 0px 6px inset;
217 | -moz-box-shadow: #8d8b84 0px 0px 6px inset;
218 | box-shadow: #8d8b84 0px 0px 6px inset;
219 | }
220 | .message {
221 | color:#8d8b84;
222 | background:#f0f1e1;
223 | padding:9px 14px;
224 | -webkit-box-shadow: #8d8b84 0px 0px 6px inset;
225 | -moz-box-shadow: #8d8b84 0px 0px 6px inset;
226 | box-shadow: #8d8b84 0px 0px 6px inset;
227 | }
228 |
229 |
230 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
231 | }
232 |
233 | @media only screen and (max-width:768px) { /* Tablet custom styles */
234 | }
--------------------------------------------------------------------------------
/moderndark/Blue/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Blue" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#00b4ff; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#00b4ff; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #00b4ff;
37 | font-size:18px;
38 | color:#00b4ff;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#00b4ff;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #00b4ff;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#00b4ff;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#00b4ff;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#00b4ff;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#00b4ff;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #00b4ff;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#0874a1;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#0494d0;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #0b5371;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
199 | }
200 |
201 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
202 | }
--------------------------------------------------------------------------------
/moderndark/Green/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Green" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#42ff00; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#42ff00; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #42ff00;
37 | font-size:18px;
38 | color:#42ff00;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#42ff00;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #42ff00;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#42ff00;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#42ff00;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#42ff00;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#42ff00;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #42ff00;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#32a30a;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#3ad105;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #2a7610;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
199 | }
200 |
201 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
202 | }
--------------------------------------------------------------------------------
/moderndark/Orange/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Orange" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#ff4e00; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#ff4e00; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #ff4e00;
37 | font-size:18px;
38 | color:#ff4e00;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#ff4e00;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #ff4e00;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#ff4e00;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#ff4e00;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#ff4e00;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#ff4e00;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #ff4e00;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#a13608;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#d04204;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #712b0b;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
199 | }
200 |
201 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
202 | }
--------------------------------------------------------------------------------
/moderndark/Pink/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Pink" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#ff00f6; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#ff00f6; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #ff00f6;
37 | font-size:18px;
38 | color:#ff00f6;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#ff00f6;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #ff00f6;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#ff00f6;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#ff00f6;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#ff00f6;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#ff00f6;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #ff00f6;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#a30a9e;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#d105ca;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #761072;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
199 | }
200 |
201 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
202 | }
--------------------------------------------------------------------------------
/moderndark/Purple/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Purple" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#9a00fb; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#9a00fb; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #9a00fb;
37 | font-size:18px;
38 | color:#9a00fb;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#9a00fb;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #9a00fb;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#9a00fb;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#9a00fb;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#9a00fb;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#9a00fb;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #9a00fb;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#670aa1;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#8005ce;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #4d1074;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 |
199 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
200 | }
201 |
202 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
203 | }
--------------------------------------------------------------------------------
/moderndark/Red/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Red" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#ff0000; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#ff0000; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #ff0000;
37 | font-size:18px;
38 | color:#ff0000;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#ff0000;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #ff0000;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#ff0000;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#ff0000;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#ff0000;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#ff0000;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #ff0000;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#a30a0a;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#d10505;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #761010;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
199 | }
200 |
201 |
202 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
203 | }
--------------------------------------------------------------------------------
/moderndark/Yellow/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Modern Dark: Yellow" by Egor Kubasov. http://egorkubasov.ru */
2 |
3 | /* Webfonts */
4 | @import url(http://fonts.googleapis.com/css?family=Ubuntu:300,400,500,700,300italic,400italic,500italic,700italic|Lobster);
5 | /* End Webfonts */
6 |
7 | body {
8 | font-family:'Ubuntu';
9 | color:#d5d5d5;
10 | background:#131313;
11 | }
12 |
13 | a { color:#fff600; }
14 | a:hover { color:#d5d5d5; }
15 | a:visited { color:#fff600; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 | .container {
22 | max-width:900px;
23 | margin:0 auto;
24 | }
25 |
26 | .header {
27 | margin:1px 0 3em 0;
28 | padding:2em 2% 0 2%;
29 | }
30 |
31 | .logo {
32 | font-family:'Lobster';
33 | float:left;
34 | display:inline-block;
35 | padding:0 0 1em;
36 | border-bottom:1px solid #fff600;
37 | font-size:18px;
38 | color:#fff600;
39 | }
40 |
41 | .menu_main {
42 | width:50%;
43 | float:right;
44 | text-align:right;
45 | margin:0.3em 0 0 0;
46 | }
47 |
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 |
53 | .menu_main li.active,
54 | .menu_main li.active a {
55 | color:#fff600;
56 | text-decoration:none;
57 | cursor:default;
58 | }
59 |
60 | .info {
61 | padding:0 0 1em 2%;
62 | }
63 |
64 | .footer {
65 | border-top:1px solid #fff600;
66 | padding:2em 2% 3em 2%;
67 | color:#666;
68 | }
69 |
70 | .copyright {
71 | width:49%;
72 | float:left;
73 | font-family:georgia, serif;
74 | font-style:italic;
75 | }
76 |
77 | .menu_bottom {
78 | width:50%;
79 | float:right;
80 | text-align:right;
81 | margin:0;
82 | padding:0;
83 | }
84 | .menu_bottom li {
85 | display:inline-block;
86 | margin:0 0 0 7px;
87 | }
88 | .menu_bottom li.active,
89 | .menu_bottom li.active a {
90 | color:#fff600;
91 | text-decoration:none;
92 | cursor:default;
93 | }
94 |
95 | .hero h1 {
96 | font-size:26px;
97 | font-family:'Lobster';
98 | font-style:normal;
99 | color:#fff600;
100 | }
101 |
102 | h1, h2 {
103 | font-weight:normal;
104 | color:#fff600;
105 | }
106 |
107 | h3, h4, h5, h6 {
108 | font-weight:bold;
109 | color:#fff600;
110 | }
111 |
112 | h1 {
113 | font-size:22px;
114 | }
115 |
116 | .form label {
117 | display:inline-block;
118 | padding:0 0 4px 0;
119 | }
120 |
121 | a.button,
122 | .button {
123 | border:1px solid #fff600;
124 | text-align:center;
125 | text-decoration:none;
126 | -webkit-border-radius:4px;
127 | -moz-border-radius:4px;
128 | border-radius:4px;
129 | -webkit-box-shadow:#000 0px 0px 1px;
130 | -moz-box-shadow:#000 0px 0px 1px;
131 | box-shadow:#000 0px 0px 1px;
132 | background:#a39e0a;
133 | color:#fff;
134 | padding:12px 20px;
135 | font-family:verdana, sans-serif;
136 | text-shadow:1px 1px 1px #2e2e2e;
137 | display:inline-block;
138 | }
139 | a.button:hover,
140 | .button:hover {
141 | color:#fff;
142 | background:#d1ca05;
143 | }
144 | a.button:active,
145 | .button:active {
146 | color:#181818;
147 | background: #767210;
148 | }
149 |
150 | .table {
151 | width:100%;
152 | }
153 | .table th {
154 | padding:5px 7px;
155 | font-weight:normal;
156 | text-align:left;
157 | font-size:1.2em;
158 | background:#2b2b2b;
159 | border:1px solid #ddd;
160 | }
161 | .table td {
162 | padding:5px 7px;
163 | }
164 | .table tr {
165 | border-bottom:1px solid #ddd;
166 | }
167 | .table tr:last-child {
168 | border:0;
169 | }
170 |
171 | .warning {
172 | border:1px solid #ec252e;
173 | color:#fff;
174 | padding:8px 14px;
175 | background:#291111;
176 | -webkit-border-radius:8px;
177 | -moz-border-radius:8px;
178 | border-radius:8px;
179 | }
180 | .success {
181 | border:1px solid #399f16;
182 | color:#fff;
183 | background:#172113;
184 | padding:8px 14px;
185 | -webkit-border-radius:8px;
186 | -moz-border-radius:8px;
187 | border-radius:8px;
188 | }
189 | .message {
190 | border:1px solid #f1edcf;
191 | color:#878473;
192 | background:#2b2a28;
193 | padding:8px 14px;
194 | -webkit-border-radius:8px;
195 | -moz-border-radius:8px;
196 | border-radius:8px;
197 | }
198 |
199 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
200 | }
201 |
202 |
203 | @media only screen and (max-width:768px) { /* Tablet custom styles*/
204 | }
--------------------------------------------------------------------------------
/nightroad/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Night road" by Renat Rafikov */
2 | body {
3 | background:#171612;
4 | font-family:arial, sans-serif;
5 | color:#7f7c77;
6 | }
7 |
8 | a { color:#7f7c77; }
9 | a:hover { color:#fefefe; }
10 | a:visited { color:#6a6762; }
11 |
12 | ul li, ol li {
13 | padding:0 0 0.4em 0;
14 | }
15 |
16 |
17 | .container {
18 | max-width:1300px;
19 | margin:0 auto;
20 | }
21 |
22 | .header {
23 | margin:1px 0 3em 0;
24 | padding:2em 2% 0 2%;
25 | border-top:4px solid #169fe5;
26 | }
27 |
28 | .logo {
29 | float:left;
30 | display:inline-block;
31 | border-bottom:1px solid #000;
32 | font-size:18px;
33 | color:#169fe5;
34 | }
35 |
36 | .menu_main {
37 | width:50%;
38 | float:right;
39 | text-align:right;
40 | margin:0.3em 0 0 0;
41 | }
42 |
43 | .menu_main li {
44 | display:inline-block;
45 | margin:0 0 0 7px;
46 | }
47 |
48 | .menu_main li a {
49 | color:#778493;
50 | }
51 |
52 | .menu_main li a:hover {
53 | color:#169fe5;
54 | }
55 |
56 | .menu_main li.active,
57 | .menu_main li.active a {
58 | color:#fff;
59 | text-decoration:none;
60 | cursor:default;
61 | }
62 |
63 | .info {
64 | padding:0 0 2em 2%;
65 | }
66 |
67 | .hero {
68 | color:#778493;
69 | border-bottom:1px solid #169fe5;
70 | margin:0 2% 40px 0;
71 | padding:0 0 10px 0;
72 | }
73 | .hero a { color:#778493; }
74 | .hero a:hover { color:#fefefe; }
75 | .hero a:visited { color:#5f6e7f; }
76 |
77 | .footer {
78 | border-top:1px solid #169fe5;
79 | padding:2em 2% 3em 2%;
80 | color:#169fe5;
81 | }
82 |
83 | .copyright {
84 | width:49%;
85 | float:left;
86 | font-family:georgia, serif;
87 | }
88 |
89 | .menu_bottom {
90 | width:50%;
91 | float:right;
92 | text-align:right;
93 | margin:0;
94 | padding:0;
95 | }
96 | .menu_bottom li {
97 | display:inline-block;
98 | margin:0 0 0 7px;
99 | }
100 | .menu_bottom li a {
101 | color:#778493;
102 | }
103 | .menu_bottom li a:hover {
104 | color:#169fe5;
105 | }
106 | .menu_bottom li.active,
107 | .menu_bottom li.active a {
108 | color:#fff;
109 | text-decoration:none;
110 | cursor:default;
111 | }
112 |
113 |
114 | .hero h1 {
115 | font-size:24px;
116 | color:#dde5ef;
117 | }
118 |
119 | h1, h2 {
120 | font-weight:normal;
121 | color:#fefefe;
122 | font-family:georgia, serif;
123 | }
124 |
125 | h3, h4, h5, h6 {
126 | font-weight:normal;
127 | color:#fefefe;
128 | font-family:georgia, serif;
129 | }
130 |
131 | h1 {
132 | font-size:22px;
133 | }
134 |
135 | .form label {
136 | display:inline-block;
137 | padding:0 0 4px 0;
138 | }
139 |
140 | a.button,
141 | a.button:visited,
142 | .button {
143 | border:0;
144 | text-align:center;
145 | text-decoration:none;
146 | -webkit-box-shadow:#000 0px 0px 8px inset;
147 | -moz-box-shadow:#000 0px 0px 8px inset;
148 | box-shadow:#000 0px 0px 8px inset;
149 | background:#169fe5;
150 | color:#d1efff;
151 | padding:7px 14px;
152 | font-family:verdana, sans-serif;
153 | display:inline-block;
154 | }
155 | a.button:hover,
156 | .button:hover {
157 | color:#fff;
158 | -webkit-box-shadow:#000 0px 0px 3px inset;
159 | -moz-box-shadow:#000 0px 0px 3px inset;
160 | box-shadow:#000 0px 0px 3px inset;
161 | }
162 | a.button:active,
163 | .button:active {
164 | color:#094766;
165 | text-shadow:1px 1px 1px #fff;
166 | -webkit-box-shadow:#000 0px 3px 4px inset;
167 | -moz-box-shadow:rgba(0, 0, 0, 0.66) 0px 3px 4px inset;
168 | box-shadow:#000 0px 3px 4px inset;
169 | }
170 |
171 | .table {
172 | width:100%;
173 | }
174 | .table th {
175 | padding:5px 7px;
176 | font-weight:normal;
177 | text-align:left;
178 | font-size:16px;
179 | color:#778493;
180 | }
181 | .table td {
182 | padding:5px 7px;
183 | }
184 | .table tr {
185 | border-bottom:1px solid #7f7c77;
186 | }
187 | .table tr:first-child {
188 | border-bottom:1px solid #169fe5;
189 | }
190 | .table tr:last-child {
191 | border:0;
192 | }
193 |
194 | .warning {
195 | color:#fff;
196 | padding:8px 14px;
197 | background:#ea0021;
198 | -webkit-box-shadow:#000 0px 0px 5px inset;
199 | -moz-box-shadow:#000 0px 0px 5px inset;
200 | box-shadow:#000 0px 0px 5px inset;
201 | }
202 | .success {
203 | color:#fff;
204 | background:#399f16;
205 | padding:8px 14px;
206 | -webkit-box-shadow:#000 0px 0px 5px inset;
207 | -moz-box-shadow:#000 0px 0px 5px inset;
208 | box-shadow:#000 0px 0px 5px inset;
209 | }
210 | .message {
211 | color:#776800;
212 | background:#ecd747;
213 | padding:8px 14px;
214 | -webkit-box-shadow:#000 0px 0px 5px inset;
215 | -moz-box-shadow:#000 0px 0px 5px inset;
216 | box-shadow:#000 0px 0px 5px inset;
217 | }
218 |
219 |
220 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
221 | }
222 |
223 | @media only screen and (max-width:768px) { /* Tablet custom styles */
224 | }
--------------------------------------------------------------------------------
/passion/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Passion" by Renat Rafikov */
2 | html {
3 | overflow-x:hidden;
4 | }
5 | body {
6 | font-family:arial, sans-serif;
7 | color:#333;
8 | }
9 |
10 | a { color:#004dd9; }
11 | a:hover { color:#ea0000; }
12 | a:visited { color:#551a8b; }
13 |
14 | ul li, ol li {
15 | padding:0 0 0.4em 0;
16 | }
17 |
18 |
19 | .container {
20 | max-width:1300px;
21 | margin:0 auto;
22 | }
23 |
24 | .header {
25 | margin:10px 1% 3em 1%;
26 | padding:2em 2% 2em 2%;
27 | background-color:#8C0000;
28 | background-image: -moz-linear-gradient(top, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.1) 40%, rgba(255,255,255,0) 100%);
29 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.1)), color-stop(40%,rgba(255,255,255,0.1)), color-stop(100%,rgba(255,255,255,0)));
30 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0.1) 40%,rgba(255,255,255,0) 100%);
31 | background-image: -o-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0.1) 40%,rgba(255,255,255,0) 100%);
32 | background-image: -ms-linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0.1) 40%,rgba(255,255,255,0) 100%);
33 | background-image: linear-gradient(top, rgba(255,255,255,0.1) 0%,rgba(255,255,255,0.1) 40%,rgba(255,255,255,0) 100%);
34 | -webkit-box-shadow: #666 0px 5px 0px;
35 | -moz-box-shadow: #666 0px 5px 0px;
36 | box-shadow: rgba(0,0,0,0.8) 0px 5px 0px;
37 | }
38 |
39 | .logo {
40 | float:left;
41 | display:inline-block;
42 | font-size:18px;
43 | color:#fff;
44 | }
45 |
46 | .menu_main {
47 | float:right;
48 | text-align:right;
49 | margin:0.3em 0 0 0;
50 | }
51 |
52 | .menu_main li {
53 | display:inline-block;
54 | margin:0 0 0 1px;
55 | padding:0;
56 | float:left;
57 | }
58 |
59 | .menu_main a,
60 | .menu_main a:visited {
61 | display:inline-block;
62 | background:#000;
63 | background:rgba(0,0,0,0.4);
64 | color:#ddd;
65 | padding:4px 10px;
66 | -webkit-border-radius: 2px;
67 | -moz-border-radius: 2px;
68 | border-radius: 2px;
69 | }
70 |
71 | .menu_main a:hover {
72 | background:rgba(0,0,0,0.6);
73 | color:#fff;
74 | }
75 |
76 | .menu_main li.active a {
77 | color:#fff;
78 | text-decoration:none;
79 | cursor:default;
80 | background:rgba(0,0,0,0.6);
81 | }
82 |
83 |
84 | .hero {
85 | background-color:#fff;
86 | background-image: -moz-linear-gradient(left, rgba(242,242,242,0) 1%, rgba(242,242,242,0.65) 15%, rgba(199,199,199,0) 30%, rgba(0,0,0,0) 100%);
87 | background-image: -webkit-gradient(linear, left top, right top, color-stop(1%,rgba(242,242,242,0)), color-stop(15%,rgba(242,242,242,0.65)), color-stop(30%,rgba(199,199,199,0)), color-stop(100%,rgba(0,0,0,0)));
88 | background-image: -webkit-linear-gradient(left, rgba(242,242,242,0) 1%,rgba(242,242,242,0.65) 15%,rgba(199,199,199,0) 30%,rgba(0,0,0,0) 100%);
89 | background-image: -o-linear-gradient(left, rgba(242,242,242,0) 1%,rgba(242,242,242,0.65) 15%,rgba(199,199,199,0) 30%,rgba(0,0,0,0) 100%);
90 | background-image: -ms-linear-gradient(left, rgba(242,242,242,0) 1%,rgba(242,242,242,0.65) 15%,rgba(199,199,199,0) 30%,rgba(0,0,0,0) 100%);
91 | background-image: linear-gradient(left, rgba(242,242,242,0) 1%,rgba(242,242,242,0.65) 15%,rgba(199,199,199,0) 30%,rgba(0,0,0,0) 100%);
92 | background-size:5px auto;
93 | position:relative;
94 | padding:0.1em 0 1em 2%;
95 | margin:0 1% 3em 1%;
96 | -webkit-border-radius:2px;
97 | -moz-border-radius:2px;
98 | border-radius:2px;
99 | }
100 |
101 | .hero:before {
102 | content:"";
103 | display:block!important;
104 | width:7000px;
105 | left:50%;
106 | margin:0 0 0 -3500px;
107 | height:200%;
108 | top:-90%;
109 | z-index:-1;
110 | background-color:#000;
111 | background-image: -moz-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 42%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0) 58%, rgba(255,255,255,0) 100%);
112 | background-image: -webkit-gradient(linear, left top, right top, color-stop(0%,rgba(255,255,255,0)), color-stop(42%,rgba(255,255,255,0)), color-stop(50%,rgba(255,255,255,0.2)), color-stop(58%,rgba(255,255,255,0)), color-stop(100%,rgba(255,255,255,0)));
113 | background-image: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 42%, rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 58%,rgba(255,255,255,0) 100%);
114 | background-image: -o-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 42%, rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 58%,rgba(255,255,255,0) 100%);
115 | background-image: -ms-linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 42%, rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 58%,rgba(255,255,255,0) 100%);
116 | background-image: linear-gradient(left, rgba(255,255,255,0) 0%,rgba(255,255,255,0) 42%, rgba(255,255,255,0.2) 50%,rgba(255,255,255,0) 58%,rgba(255,255,255,0) 100%);
117 | position:absolute;
118 | }
119 |
120 | .article {
121 | padding:0 2% 3em 2%;
122 | margin:0 1%;
123 | }
124 |
125 | .footer {
126 | padding:2em 2% 3em 2%;
127 | color:#fff;
128 | position:relative;
129 | }
130 |
131 | .footer:before {
132 | content:"";
133 | display:block!important;
134 | width:7000px;
135 | left:-2000px;
136 | height:100%;
137 | top:0;
138 | z-index:-1;
139 | background:#000;
140 | position:absolute;
141 | }
142 |
143 | .copyright {
144 | width:49%;
145 | float:left;
146 | color:#666;
147 | }
148 |
149 | .menu_bottom {
150 | width:50%;
151 | float:right;
152 | text-align:right;
153 | margin:0;
154 | padding:0;
155 | }
156 | .menu_bottom li {
157 | display:inline-block;
158 | margin:0 0 0 7px;
159 | }
160 | .menu_bottom a,
161 | .menu_bottom a:visited {
162 | color:#ddd;
163 | }
164 | .menu_bottom a:hover {
165 | color:#fff;
166 | }
167 |
168 | .menu_bottom li.active,
169 | .menu_bottom li.active a {
170 | color:#fff;
171 | text-decoration:none;
172 | cursor:default;
173 | }
174 |
175 |
176 | .hero h1 {
177 | font-size:26px;
178 | color:#8C0000;
179 | }
180 |
181 | h1, h2 {
182 | font-weight:normal;
183 | color:#000;
184 | }
185 |
186 | h3, h4, h5, h6 {
187 | font-weight:bold;
188 | color:#000;
189 | }
190 |
191 | h1 {
192 | font-size:22px;
193 | }
194 |
195 | .form label {
196 | display:inline-block;
197 | padding:0 0 4px 0;
198 | }
199 |
200 | a.button,
201 | .button {
202 | border:1px solid #CACACA;
203 | text-align:center;
204 | text-decoration:none;
205 | -webkit-border-radius:2px;
206 | -moz-border-radius:2px;
207 | border-radius:2px;
208 | background:#ECECEC;
209 | color:#6E6E6E;
210 | padding:6px 15px;
211 | font-family:verdana, sans-serif;
212 | display:inline-block;
213 | }
214 | a.button:hover,
215 | .button:hover {
216 | background: #F9F9F9;
217 | border-color: #aaa;
218 | color: #3C3C3D;
219 | text-shadow: 1px 1px 0 #fff;
220 | }
221 | a.button:active,
222 | .button:active {
223 | position:relative;
224 | top:1px;
225 | }
226 |
227 | .table {
228 | width:100%;
229 | }
230 | .table th {
231 | padding:5px 7px;
232 | font-weight:normal;
233 | text-align:left;
234 | font-size:1.2em;
235 | background:#ffffff;
236 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ffffff), to(#F7F7F7));
237 | background:-webkit-linear-gradient(#ffffff, #F7F7F7);
238 | background:-moz-linear-gradient(#ffffff, #F7F7F7);
239 | background:-ms-linear-gradient(#ffffff, #F7F7F7);
240 | background:-o-linear-gradient(#ffffff, #F7F7F7);
241 | background:linear-gradient(#ffffff, #F7F7F7);
242 | }
243 | .table td {
244 | padding:5px 7px;
245 | }
246 | .table tr {
247 | border-bottom:1px solid #ddd;
248 | }
249 | .table tr:last-child {
250 | border:0;
251 | }
252 |
253 | .warning {
254 | color:#fff;
255 | padding:8px 14px;
256 | background:#8C0000;
257 | border-bottom:3px solid #000;
258 | }
259 | .success {
260 | color:#fff;
261 | background:#008c00;
262 | padding:8px 14px;
263 | border-bottom:3px solid #000;
264 | }
265 | .message {
266 | color:#666;
267 | background:#fffee0;
268 | padding:8px 14px;
269 | border-bottom:3px solid #666;
270 | }
271 |
272 |
273 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
274 | .header {
275 | margin-bottom:0.1em!important;
276 | padding:10px 0;
277 | }
278 | .menu_main li {
279 | float:none;
280 | }
281 | }
282 |
283 | @media only screen and (max-width:768px) { /* Tablet custom styles */
284 | .header {
285 | margin-bottom:1em;
286 | }
287 |
288 | .hero {
289 | margin-bottom:1em;
290 | }
291 |
292 | .hero:before {
293 | height:193%;
294 | }
295 | }
--------------------------------------------------------------------------------
/simplesoft/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Simple soft" by Renat Rafikov */
2 | html {
3 | height:100%;
4 | overflow-x:hidden;
5 | }
6 | body {
7 | font-family:arial, sans-serif;
8 | color:#000;
9 | background:#f2f2f2;
10 | height:100%;
11 | }
12 |
13 | a { color:#000; }
14 | a:hover { color:#666; }
15 | a:visited { color:#444; }
16 |
17 | ul li, ol li {
18 | padding:0 0 0.4em 0;
19 | }
20 |
21 |
22 | .container {
23 | max-width:1300px;
24 | margin:0 auto;
25 | }
26 |
27 | .header {
28 | padding:2em 2% 2em 2%;
29 | background:#313131;
30 | border-bottom:1px solid #88c8f6;
31 | position:relative;
32 | }
33 | .header:before {
34 | content:"";
35 | display:block!important;
36 | background:#313131;
37 | border-bottom:1px solid #88c8f6;
38 | height:100%;
39 | width:6000px;
40 | position:absolute;
41 | left:-2000px;
42 | top:0;
43 | z-index:-1;
44 | }
45 |
46 | .logo {
47 | float:left;
48 | display:inline-block;
49 | font-size:24px;
50 | color:#ededed;
51 | }
52 |
53 | .menu_main {
54 | width:50%;
55 | float:right;
56 | text-align:right;
57 | margin:0.3em 0 0 0;
58 | }
59 |
60 | .menu_main li {
61 | display:inline-block;
62 | margin:0 0 0 7px;
63 | }
64 |
65 | .menu_main li a,
66 | .menu_main li a:visited {
67 | color:#ededed;
68 | text-decoration:none;
69 | }
70 | .menu_main li a:hover,
71 | .menu_main li a:visited:hover {
72 | color:#fff;
73 | }
74 |
75 | .menu_main li.active,
76 | .menu_main li.active a {
77 | color:#666;
78 | text-decoration:none;
79 | cursor:default;
80 | }
81 |
82 | .hero {
83 | background:#499cd7;
84 | color:#fff;
85 | border-bottom:1px solid #fff;
86 | padding:10px 0 10px 2%;
87 | margin:0 0 2em 0;
88 | position:relative;
89 | }
90 | .hero:before {
91 | content:"";
92 | display:block!important;
93 | background:#499cd7;
94 | border-bottom:1px solid #fff;
95 | height:100%;
96 | width:6000px;
97 | position:absolute;
98 | left:-2000px;
99 | top:0;
100 | z-index:-1;
101 | }
102 |
103 | .info {
104 | padding:0 0 2.5em 0;
105 | }
106 |
107 | .article {
108 | padding:0 0 0 2%;
109 | }
110 |
111 | .footer {
112 | padding:2em 2% 5em 2%;
113 | color:#666;
114 | background:#fff;
115 | position:relative;
116 | }
117 | .footer:before {
118 | content:"";
119 | display:block!important;
120 | background:#fff;
121 | height:100%;
122 | width:6000px;
123 | position:absolute;
124 | left:-2000px;
125 | top:0;
126 | z-index:-1;
127 | -webkit-box-shadow: #d8d8d8 0px -1px 5px;
128 | -moz-box-shadow: #d8d8d8 0px -1px 5px;
129 | box-shadow: #d8d8d8 0px -1px 5px;
130 | }
131 |
132 | .copyright {
133 | width:49%;
134 | float:left;
135 | }
136 |
137 | .menu_bottom {
138 | width:50%;
139 | float:right;
140 | text-align:right;
141 | margin:0;
142 | padding:0;
143 | }
144 | .menu_bottom li {
145 | display:inline-block;
146 | margin:0 0 0 7px;
147 | }
148 | .menu_bottom li a {
149 | color:#666;
150 | }
151 | .menu_bottom li a:hover {
152 | color:#444;
153 | }
154 | .menu_bottom li.active,
155 | .menu_bottom li.active a {
156 | color:#666;
157 | text-decoration:none;
158 | cursor:default;
159 | }
160 |
161 |
162 | .hero h1 {
163 | font-size:24px;
164 | color:#fff;
165 | }
166 |
167 | h1, h2 {
168 | font-weight:normal;
169 | color:#010101;
170 | }
171 |
172 | h3, h4, h5, h6 {
173 | font-weight:bold;
174 | color:#010101;
175 | }
176 |
177 | h1 {
178 | font-size:22px;
179 | }
180 |
181 | .form label {
182 | display:inline-block;
183 | padding:0 0 4px 0;
184 | }
185 |
186 | a.button,
187 | .button {
188 | border:1px solid #9a9a9a;
189 | text-align:center;
190 | text-decoration:none;
191 | -webkit-border-radius:3px;
192 | -moz-border-radius:3px;
193 | border-radius:3px;
194 | -webkit-box-shadow:rgba(0, 0, 0, 0.64) 0px 1px 4px;
195 | -moz-box-shadow:rgba(0, 0, 0, 0.64) 0px 1px 4px;
196 | box-shadow:rgba(0, 0, 0, 0.64) 0px 1px 4px;
197 | background:#ffffff;
198 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#ffffff), to(#e2e2e2));
199 | background:-webkit-linear-gradient(#ffffff, #e2e2e2);
200 | background:-moz-linear-gradient(#ffffff, #e2e2e2);
201 | background:-ms-linear-gradient(#ffffff, #e2e2e2);
202 | background:-o-linear-gradient(#ffffff, #e2e2e2);
203 | background:linear-gradient(#ffffff, #e2e2e2);
204 | color:#484848;
205 | font-size:14px;
206 | padding:5px 14px;
207 | font-family:verdana, sans-serif;
208 | display:inline-block;
209 | }
210 | a.button:hover,
211 | .button:hover {
212 | border:1px solid #5a5a5a;
213 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#e2e2e2), to(#ffffff));
214 | background:-webkit-linear-gradient(#e2e2e2, #ffffff);
215 | background:-moz-linear-gradient(#e2e2e2, #ffffff);
216 | background:-ms-linear-gradient(#e2e2e2, #ffffff);
217 | background:-o-linear-gradient(#e2e2e2, #ffffff);
218 | background:linear-gradient(#e2e2e2, #ffffff);
219 | }
220 | a.button:active,
221 | .button:active {
222 | color:#666;
223 | -webkit-box-shadow:#5a5a5a 0px 3px 5px inset;
224 | -moz-box-shadow:#5a5a5a 0px 3px 5px inset;
225 | box-shadow:#5a5a5a 0px 3px 5px inset;
226 | }
227 |
228 | .table {
229 | width:100%;
230 | }
231 | .table th {
232 | padding:5px 7px;
233 | font-weight:bold;
234 | text-align:left;
235 | }
236 | .table td {
237 | padding:5px 7px;
238 | }
239 | .table tr:nth-child(even) {
240 | background:#fff;
241 | }
242 | .table tr:last-child {
243 | border:0;
244 | }
245 |
246 | .warning {
247 | border:1px solid #d03f3f;
248 | color:#fff;
249 | padding:8px 14px;
250 | background:#d03f3f;
251 | -webkit-border-radius:8px;
252 | -moz-border-radius:8px;
253 | border-radius:8px;
254 | }
255 | .success {
256 | border:1px solid #49d76e;
257 | color:#fff;
258 | background:#49d76e;
259 | padding:8px 14px;
260 | -webkit-border-radius:8px;
261 | -moz-border-radius:8px;
262 | border-radius:8px;
263 | }
264 | .message {
265 | border:1px solid #d7cf49;
266 | color:#fff;
267 | background:#d7cf49;
268 | padding:8px 14px;
269 | -webkit-border-radius:8px;
270 | -moz-border-radius:8px;
271 | border-radius:8px;
272 | }
273 |
274 |
275 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
276 | .header:before,
277 | .hero:before,
278 | .footer:before {
279 | display:none!important;
280 | }
281 | }
282 |
283 | @media only screen and (max-width:768px) { /* Tablet custom styles */
284 | .header:before,
285 | .hero:before {
286 | display:none!important;
287 | }
288 | }
--------------------------------------------------------------------------------
/simpleswiss/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Simple swiss" by Renat Rafikov */
2 | body {
3 | background:#fff220;
4 | font-family:arial, sans-serif;
5 | color:#565656;
6 | }
7 |
8 | a { color:#565656; }
9 | a:hover { color:#565656; text-decoration:none; }
10 | a:visited { color:#727272; text-decoration:line-through;}
11 | a:visited:hover { text-decoration:underline;}
12 |
13 | ul li, ol li {
14 | padding:0 0 0.4em 0;
15 | }
16 |
17 |
18 | .container {
19 | max-width:1300px;
20 | margin:0 auto;
21 | }
22 |
23 | .header {
24 | margin:1em 1% 0 1%;
25 | padding:2em 2% 1em 2%;
26 | background:#fff;
27 | }
28 |
29 | .logo {
30 | float:left;
31 | display:inline-block;
32 | font-size:18px;
33 | color:#383838;
34 | }
35 |
36 | .menu_main {
37 | width:50%;
38 | float:right;
39 | text-align:right;
40 | margin:0.2em 0 0 0;
41 | }
42 |
43 | .menu_main li {
44 | display:inline-block;
45 | margin:0 0 0 7px;
46 | }
47 |
48 | .menu_main li.active,
49 | .menu_main li.active a {
50 | color:#565656;
51 | text-decoration:none;
52 | cursor:default;
53 | }
54 |
55 | .info {
56 | margin:0 1%;
57 | }
58 |
59 | .hero {
60 | background:#fff;
61 | margin:0 0 2em 0;
62 | padding:0 0 1em 2%;
63 | }
64 | .hero .col_66 {
65 | border-right:1px solid #cecece;
66 | margin-right:1%;
67 | padding-right:1%;
68 | }
69 |
70 | .article {
71 | background:#fff;
72 | padding:1.5em 0 2em 2%;
73 | }
74 |
75 | .footer {
76 | padding:1em 2% 2em 2%;
77 | color:#565656;
78 | margin:0 1%;
79 | }
80 |
81 | .copyright {
82 | width:49%;
83 | float:left;
84 | }
85 |
86 | .menu_bottom {
87 | width:50%;
88 | float:right;
89 | text-align:right;
90 | margin:0;
91 | padding:0;
92 | color:#565656;
93 | }
94 | .menu_bottom li {
95 | display:inline-block;
96 | margin:0 0 0 7px;
97 | }
98 | .menu_bottom a {
99 | color:#565656;
100 | }
101 | .menu_bottom li.active,
102 | .menu_bottom li.active a {
103 | color:#565656;
104 | text-decoration:none;
105 | cursor:default;
106 | }
107 |
108 |
109 | .hero h1 {
110 | font-size:18px;
111 | color:#565656;
112 | }
113 |
114 | h1, h2 {
115 | font-weight:normal;
116 | font-size:17px;
117 | }
118 |
119 | h3, h4, h5, h6 {
120 | font-weight:bold;
121 | color:#737373;
122 | }
123 |
124 | h1 {
125 | font-size:22px;
126 | }
127 |
128 | .article .col_33 h2:first-child,
129 | .article .col_50 h2:first-child,
130 | .article .col_66 h2:first-child {
131 | border-bottom:1px solid #cecece;
132 | padding: 0 0 0.5em;
133 | }
134 |
135 | .form label {
136 | display:inline-block;
137 | padding:0 0 4px 0;
138 | }
139 |
140 | a.button,
141 | .button {
142 | border:0;
143 | text-align:center;
144 | text-decoration:none;
145 | -webkit-border-radius:1px;
146 | -moz-border-radius:1px;
147 | border-radius:1px;
148 | -webkit-box-shadow: #969696 0px 2px 6px;
149 | -moz-box-shadow: #969696 0px 2px 6px;
150 | box-shadow: #969696 0px 2px 6px;
151 | background:#565656;
152 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#8D8D8D), to(#565656));
153 | background: -webkit-linear-gradient(#8D8D8D, #565656);
154 | background: -moz-linear-gradient(#8D8D8D, #565656);
155 | background: -ms-linear-gradient(#8D8D8D, #565656);
156 | background: -o-linear-gradient(#8D8D8D, #565656);
157 | background: linear-gradient(#8D8D8D, #565656);
158 | color:#d3d3d3;
159 | padding:12px 20px;
160 | font-family:verdana, sans-serif;
161 | display:inline-block;
162 | }
163 | a.button:hover,
164 | .button:hover {
165 | color:#fff;
166 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#565656), to(#8D8D8D));
167 | background: -webkit-linear-gradient(#565656, #8D8D8D);
168 | background: -moz-linear-gradient(#565656, #8D8D8D);
169 | background: -ms-linear-gradient(#565656, #8D8D8D);
170 | background: -o-linear-gradient(#565656, #8D8D8D);
171 | background: linear-gradient(#565656, #8D8D8D);
172 | -webkit-box-shadow: #898989 0px 2px 4px;
173 | -moz-box-shadow: #898989 0px 2px 4px;
174 | box-shadow: #898989 0px 2px 4px;
175 | }
176 | a.button:active,
177 | .button:active {
178 | color:#323232;
179 | text-shadow:0px 1px 1px #bdbdbd;
180 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#565656), to(#8D8D8D));
181 | background: -webkit-linear-gradient(#565656, #8D8D8D);
182 | background: -moz-linear-gradient(#565656, #8D8D8D);
183 | background: -ms-linear-gradient(#565656, #8D8D8D);
184 | background: -o-linear-gradient(#565656, #8D8D8D);
185 | background: linear-gradient(#565656, #8D8D8D);
186 | -webkit-box-shadow: #323232 0px -2px 2px inset;
187 | -moz-box-shadow: #323232 0px -2px 2px inset;
188 | box-shadow: #323232 0px -2px 2px inset;
189 | }
190 |
191 | .table {
192 | width:100%;
193 | }
194 | .table th {
195 | padding:5px 7px;
196 | font-weight:normal;
197 | text-align:left;
198 | font-size:1.2em;
199 | }
200 | .table td {
201 | padding:5px 7px;
202 | }
203 | .table tr {
204 | border-bottom:1px solid #ddd;
205 | }
206 | .table tr:last-child {
207 | border:0;
208 | }
209 |
210 | .warning {
211 | border:1px solid #ec252e;
212 | color:#fff;
213 | padding:8px 14px;
214 | background:#eb4161;
215 | -webkit-border-radius:1px;
216 | -moz-border-radius:1px;
217 | border-radius:1px;
218 | }
219 | .success {
220 | border:1px solid #399f16;
221 | color:#fff;
222 | background:#12d878;
223 | padding:8px 14px;
224 | -webkit-border-radius:1px;
225 | -moz-border-radius:1px;
226 | border-radius:1px;
227 | }
228 | .message {
229 | border:1px solid #efe65d;
230 | color:#9a9855;
231 | background:#fffbc0;
232 | padding:8px 14px;
233 | -webkit-border-radius:1px;
234 | -moz-border-radius:1px;
235 | border-radius:1px;
236 | }
237 |
238 |
239 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
240 | .hero .col_66 {
241 | border-right:0;
242 | margin-right:2%;
243 | }
244 | .header {
245 | padding: 1em 2% 0;
246 | margin: 3px 1% 0;
247 | }
248 | .hero {
249 | margin: 0 0 6px;
250 | }
251 | }
252 |
253 | @media only screen and (max-width:768px) { /* Tablet custom styles */
254 | .hero .col_66 {
255 | border-right:0;
256 | margin-right:2%;
257 | }
258 | }
--------------------------------------------------------------------------------
/simploid/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Simploid" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | }
5 |
6 | a { color:#000; }
7 | a:hover { color:#33b5e5; }
8 | a:visited { color:#888; }
9 |
10 | ul li, ol li {
11 | padding:0 0 0.4em 0;
12 | }
13 |
14 |
15 | .container {
16 | max-width:1300px;
17 | margin:0 auto;
18 | }
19 |
20 | .header {
21 | margin:1px 0 1.5em 0;
22 | padding:2em 2% 1.4em 2%;
23 | border-bottom:1px solid #ccc;
24 | }
25 |
26 | .logo {
27 | float:left;
28 | display:inline-block;
29 | font-size:22px;
30 | color:#86c300;
31 | }
32 |
33 | .menu_main {
34 | width:50%;
35 | float:right;
36 | text-align:right;
37 | margin:0.3em 0 0 0;
38 | font-size:15px;
39 | }
40 | .menu_main a,
41 | .menu_main a:visited {
42 | color:#000;
43 | }
44 | .menu_main a:hover,
45 | .menu_main a:visited:hover {
46 | color:#33b5e5;
47 | }
48 | .menu_main li {
49 | display:inline-block;
50 | margin:0 0 0 7px;
51 | }
52 | .menu_main li.active,
53 | .menu_main li.active a {
54 | color:#33b5e5;
55 | text-decoration:none;
56 | cursor:default;
57 | }
58 |
59 | .info {
60 | padding:0 0 1em 2%;
61 | }
62 |
63 | .footer {
64 | border-top:1px solid #86c300;
65 | padding:2em 2% 3em 2%;
66 | color:#717171;
67 | }
68 |
69 | .copyright {
70 | width:49%;
71 | float:left;
72 | }
73 |
74 | .menu_bottom {
75 | width:50%;
76 | float:right;
77 | text-align:right;
78 | margin:0;
79 | padding:0;
80 | font-size:15px;
81 | }
82 | .menu_bottom a,
83 | .menu_bottom a:visited {
84 | color:#000;
85 | }
86 | .menu_bottom a:hover,
87 | .menu_bottom a:visited:hover {
88 | color:#33b5e5;
89 | }
90 | .menu_bottom li {
91 | display:inline-block;
92 | margin:0 0 0 7px;
93 | }
94 | .menu_bottom li.active,
95 | .menu_bottom li.active a {
96 | color:#33b5e5;
97 | text-decoration:none;
98 | cursor:default;
99 | }
100 |
101 | .hero h1 {
102 | font-size:18px;
103 | font-weight:bold;
104 | }
105 |
106 | h1 {
107 | font-size:22px;
108 | }
109 | h1, h2 {
110 | font-weight:bold;
111 | color:#3d3d3d;
112 | }
113 | h3, h4, h5, h6 {
114 | font-weight:bold;
115 | color:#3d3d3d;
116 | }
117 |
118 | .form label {
119 | display:inline-block;
120 | padding:0 0 4px 0;
121 | }
122 |
123 | a.button,
124 | .button {
125 | border:1px solid #2FADDB;
126 | text-align:center;
127 | text-decoration:none;
128 | -webkit-border-radius:2px;
129 | -moz-border-radius:2px;
130 | border-radius:2px;
131 | background:#0099CC;
132 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#2FADDB), to(#0099CC));
133 | background:-webkit-linear-gradient(center top , #2FADDB, #0099CC);
134 | background:-moz-linear-gradient(center top , #2FADDB, #0099CC);
135 | background:-ms-linear-gradient(center top , #2FADDB, #0099CC);
136 | background:-o-linear-gradient(center top , #2FADDB, #0099CC);
137 | background:linear-gradient(center top , #2FADDB, #0099CC);
138 | color:#fff;
139 | padding:5px 10px;
140 | display:inline-block;
141 | font-size:15px;
142 | }
143 | a.button:hover,
144 | .button:hover {
145 | color:#fff;
146 | background:#4CADCB;
147 | background:-webkit-gradient(linear, 0 0, 0 bottom, from(#5DBCD9), to(#4CADCB));
148 | background:-webkit-linear-gradient(center top , #5DBCD9, #4CADCB));
149 | background:-moz-linear-gradient(center top , #5DBCD9, #4CADCB);
150 | background:-ms-linear-gradient(center top , #5DBCD9, #4CADCB));
151 | background:-o-linear-gradient(center top , #5DBCD9, #4CADCB));
152 | background:linear-gradient(center top , #5DBCD9, #4CADCB));
153 | }
154 | a.button:active,
155 | .button:active {
156 | background:#1E799A;
157 | border:1px solid #30B7E6;
158 | }
159 |
160 | .table {
161 | width:100%;
162 | }
163 | .table th {
164 | padding:5px 7px;
165 | font-weight:bold;
166 | text-align:left;
167 | font-size:1.1em;
168 | background:#ffffff;
169 | }
170 | .table td {
171 | padding:8px 7px;
172 | }
173 | .table tr {
174 | border-bottom:1px solid #ccc;
175 | }
176 | .table tr:last-child {
177 | border:0;
178 | }
179 |
180 | .warning {
181 | border:1px solid #ec252e;
182 | color:#ec252e;
183 | padding:8px 14px;
184 | -webkit-border-radius:2px;
185 | -moz-border-radius:2px;
186 | border-radius:2px;
187 | }
188 | .success {
189 | border:1px solid #399f16;
190 | color:#399f16;
191 | padding:8px 14px;
192 | -webkit-border-radius:2px;
193 | -moz-border-radius:2px;
194 | border-radius:2px;
195 | }
196 | .message {
197 | border:1px solid #ccc;
198 | color:#717171;
199 | padding:8px 14px;
200 | -webkit-border-radius:2px;
201 | -moz-border-radius:2px;
202 | border-radius:2px;
203 | }
204 |
205 |
206 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
207 | }
208 |
209 | @media only screen and (max-width:768px) { /* Tablet custom styles */
210 | }
--------------------------------------------------------------------------------
/snobbish/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Snobbish" by Renat Rafikov */
2 | html {
3 | overflow-x:hidden;
4 | }
5 | body {
6 | font-family:arial, sans-serif;
7 | color:#333;
8 | }
9 |
10 | a { color:#000; }
11 | a:hover { color:#C40005; }
12 | a:visited { color:#555; }
13 |
14 | ul li, ol li {
15 | padding:0 0 0.4em 0;
16 | }
17 | .container {
18 | max-width:1300px;
19 | margin:0 auto;
20 | }
21 |
22 |
23 | .header {
24 | padding:2em 2% 2em 2%;
25 | border-top:4px solid #000000;
26 | border-bottom:2px solid #000000;
27 | position:relative;
28 | }
29 | .header:before {
30 | content:"";
31 | position:absolute;
32 | display:block!important;
33 | width:7000px;
34 | left:-3000px;
35 | top:-4px;
36 | height:70%;
37 | border-top:4px solid #000000;
38 | background: -moz-linear-gradient(top, rgba(188,188,188,0.65) 0%, rgba(228,228,228,0) 60%, rgba(255,255,255,0) 100%);
39 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(188,188,188,0.65)), color-stop(60%,rgba(228,228,228,0)), color-stop(100%,rgba(255,255,255,0)));
40 | background: -webkit-linear-gradient(top, rgba(188,188,188,0.65) 0%,rgba(228,228,228,0) 60%,rgba(255,255,255,0) 100%);
41 | background: -o-linear-gradient(top, rgba(188,188,188,0.65) 0%,rgba(228,228,228,0) 60%,rgba(255,255,255,0) 100%);
42 | background: -ms-linear-gradient(top, rgba(188,188,188,0.65) 0%,rgba(228,228,228,0) 60%,rgba(255,255,255,0) 100%);
43 | background: linear-gradient(top, rgba(188,188,188,0.65) 0%,rgba(228,228,228,0) 60%,rgba(255,255,255,0) 100%);
44 | z-index:-1;
45 | }
46 |
47 | .logo {
48 | float:left;
49 | display:inline-block;
50 | font-size:24px;
51 | color:#000;
52 | font-family:georgia, sans-serif;
53 | font-weight:bold;
54 | }
55 |
56 | .menu_main {
57 | float:right;
58 | text-align:right;
59 | margin:0.3em 0 0 0;
60 | font-family:'Helvetica Neue',Helvetica,Arial;
61 | font-weight:bold;
62 | font-size:18px;
63 | }
64 |
65 | .menu_main li {
66 | display:inline-block;
67 | padding:0 0 0 12px;
68 | margin:0 0 0 5px;
69 | border-left: 1px solid #B2B2B2;
70 | }
71 |
72 | .menu_main li:first-child {
73 | border:0;
74 | padding-left:0;
75 | margin-left:0;
76 | }
77 |
78 | .menu_main a,
79 | .menu_main a:visited {
80 | color:#000;
81 | text-decoration:none;
82 | }
83 |
84 | .menu_main a:hover,
85 | .menu_main a:visited:hover {
86 | color:#f00;
87 | }
88 |
89 | .menu_main li.active,
90 | .menu_main li.active a {
91 | color:#ACACAC;
92 | cursor:default;
93 | }
94 |
95 | .hero {
96 | padding:1em 0 0 2%;
97 | background:#333;
98 | color:#fff;
99 | }
100 |
101 | .hero a,
102 | .hero a:visited {
103 | color:#fff;
104 | }
105 |
106 | .article {
107 | padding:0 0 2em 2%;
108 | border-left:1px solid #ccc;
109 | border-right:1px solid #ccc;
110 | }
111 |
112 | .footer {
113 | padding:2em 2% 3em 2%;
114 | color:#fff;
115 | background:#000;
116 | border-bottom:8px solid #313131;
117 | }
118 |
119 | .copyright {
120 | width:49%;
121 | float:left;
122 | font-family:georgia, serif;
123 | font-weight:bold;
124 | color:#4D4B4B;
125 | }
126 |
127 | .menu_bottom {
128 | width:50%;
129 | float:right;
130 | text-align:right;
131 | margin:0;
132 | padding:0;
133 | font-weight:bold;
134 | }
135 |
136 | .menu_bottom li {
137 | display:inline-block;
138 | padding:0 0 0 12px;
139 | margin:0 0 0 5px;
140 | border-left: 1px solid #4D4D4D;
141 | }
142 |
143 | .menu_bottom li:first-child {
144 | border:0;
145 | padding-left:0;
146 | margin-left:0;
147 | }
148 |
149 | .menu_bottom a,
150 | .menu_bottom a:visited {
151 | color:#fff;
152 | text-decoration:none;
153 | }
154 |
155 | .menu_bottom a:hover,
156 | .menu_bottom a:visited:hover {
157 | color:#ACACAC;
158 | }
159 |
160 | .menu_bottom li.active,
161 | .menu_bottom li.active a {
162 | color:#BC0404;
163 | cursor:default;
164 | }
165 |
166 |
167 | .hero h1 {
168 | font-size: 23px;
169 | margin: 0.4em 0 0.5em;
170 | font-family:'Helvetica Neue',Helvetica,Arial;
171 | color:#fff;
172 | display:inline-block;
173 | border-bottom:1px dotted #fff;
174 | font-style:normal;
175 | }
176 |
177 | h1, h2 {
178 | font-weight:normal;
179 | color:#000;
180 | font-family:georgia, serif;
181 | font-style:italic;
182 | font-weight:bold;
183 | }
184 |
185 | h3, h4, h5, h6 {
186 | font-family:georgia, serif;
187 | font-style:italic;
188 | font-weight:bold;
189 | color:#000;
190 | }
191 |
192 | h1 {
193 | font-size:22px;
194 | }
195 |
196 | .form label {
197 | display:inline-block;
198 | padding:0 0 4px 0;
199 | }
200 |
201 | a.button,
202 | .button {
203 | border:0;
204 | text-align:center;
205 | text-decoration:none;
206 | background:#c40005;
207 | color:#fff;
208 | padding:4px 14px;
209 | border-bottom:2px solid #000;
210 | border-bottom:2px solid rgba(0,0,0,0.8);
211 | font-family:verdana, sans-serif;
212 | display:inline-block;
213 | }
214 | a.button:hover,
215 | .button:hover {
216 | background:#e12d32;
217 | color:#fff;
218 | }
219 | a.button:active,
220 | .button:active {
221 | color:#c8a5a5;
222 | background:#9c0004;
223 | border:0;
224 | margin-bottom:2px;
225 | }
226 |
227 | .table {
228 | width:100%;
229 | }
230 | .table th {
231 | padding:5px 7px;
232 | font-weight:normal;
233 | text-align:left;
234 | }
235 | .table td {
236 | padding:5px 7px;
237 | }
238 | .table tr {
239 | border-bottom:1px dotted #666;
240 | }
241 | .table tr:last-child {
242 | border:0;
243 | }
244 |
245 | .warning {
246 | color:#fff;
247 | padding:8px 14px;
248 | background:#c40005;
249 | border-color:#c40005;
250 | position:relative;
251 | -webkit-box-shadow: #d1d1d1 6px 6px 10px;
252 | -moz-box-shadow: #d1d1d1 6px 6px 10px;
253 | box-shadow: #d1d1d1 6px 6px 10px;
254 | }
255 | .success {
256 | color:#000;
257 | background:#89BFDC;
258 | border-color:#89BFDC;
259 | padding:8px 14px;
260 | position:relative;
261 | -webkit-box-shadow: #d1d1d1 6px 6px 10px;
262 | -moz-box-shadow: #d1d1d1 6px 6px 10px;
263 | box-shadow: #d1d1d1 6px 6px 10px;
264 | }
265 | .message {
266 | color:#000;
267 | background:#eee;
268 | border-color:#eee;
269 | padding:8px 14px;
270 | position:relative;
271 | -webkit-box-shadow: #f4f4f4 6px 6px 10px;
272 | -moz-box-shadow: #f4f4f4 6px 6px 10px;
273 | box-shadow: #f4f4f4 6px 6px 10px;
274 | }
275 |
276 | .warning:before,
277 | .success:before,
278 | .message:before {
279 | content:"";
280 | display:block;
281 | width:0px;
282 | height:0px;
283 | position:absolute;
284 | bottom:-10px;
285 | left:14px;
286 | border-top: 10px solid black;
287 | border-top-color: inherit;
288 | border-left: 0px dotted transparent;
289 | border-right: 10px solid transparent;
290 | }
291 |
292 |
293 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
294 | }
295 |
296 | @media only screen and (max-width:768px) { /* Tablet custom styles */
297 | }
--------------------------------------------------------------------------------
/solution/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Solution" by Renat Rafikov */
2 | html {
3 | overflow-x:hidden;
4 | }
5 | body {
6 | font-family:arial, sans-serif;
7 | color:#000;
8 | }
9 |
10 | a { color:#85ccd3; }
11 | a:hover { text-decoration:none; }
12 | a:visited { color:#b769cd; }
13 |
14 | ul li, ol li {
15 | padding:0 0 0.4em 0;
16 | }
17 |
18 |
19 | .container {
20 | max-width:1300px;
21 | margin:0 auto;
22 | }
23 |
24 | .header {
25 | margin:0 0 2em 0;
26 | padding:0 2% 0 2%;
27 | border-top:10px solid #111111;
28 | position:relative;
29 | }
30 |
31 | .header:before {
32 | content:"";
33 | display:block;
34 | width:5000px;
35 | left:-2000px;
36 | top:-10px;
37 | border-top:10px solid #111111;
38 | position:absolute;
39 | }
40 |
41 | .logo {
42 | float:left;
43 | display:inline-block;
44 | padding:0.7em 11px 0.7em;
45 | font-size:18px;
46 | color:#fff;
47 | background:#111111;
48 | font-family:times new roman, serif;
49 | font-variant:small-caps;
50 | font-size:26px;
51 | -webkit-border-radius:0 0 7px 7px;
52 | -moz-border-radius:0 0 7px 7px;
53 | border-radius:0 0 7px 7px;
54 | }
55 |
56 | .menu_main {
57 | width:50%;
58 | float:right;
59 | text-align:right;
60 | margin:1.7em 0 0 0;
61 | }
62 |
63 | .menu_main li {
64 | display:inline-block;
65 | margin:0 0 0 7px;
66 | }
67 |
68 | .menu_main a,
69 | .menu_main a:visited {
70 | color:#b1b1b1;
71 | }
72 |
73 | .menu_main li.active,
74 | .menu_main li.active a {
75 | color:#48c6d3;
76 | text-decoration:none;
77 | cursor:default;
78 | }
79 |
80 | .info {
81 | padding:0 0 1em 2%;
82 | }
83 |
84 | .hero {
85 | border-bottom:1px solid #e5e5e5;
86 | margin:0 2% 0 0;
87 | }
88 |
89 | .footer {
90 | border-top:8px solid #111;
91 | padding:2em 2% 3em 2%;
92 | position:relative;
93 | }
94 | .footer:before {
95 | content:"";
96 | display:block;
97 | width:5000px;
98 | left:-2000px;
99 | top:-10px;
100 | border-top:10px solid #111111;
101 | position:absolute;
102 | }
103 |
104 | .copyright {
105 | width:49%;
106 | float:left;
107 | font-family:times new roman, serif;
108 | font-variant:small-caps;
109 | color:#b1b1b1;
110 | font-size:18px;
111 | }
112 |
113 | .menu_bottom {
114 | width:50%;
115 | float:right;
116 | text-align:right;
117 | margin:0;
118 | padding:0;
119 | }
120 | .menu_bottom li {
121 | display:inline-block;
122 | margin:0 0 0 7px;
123 | }
124 | .menu_bottom a,
125 | .menu_bottom a:visited {
126 | color:#b1b1b1;
127 | }
128 | .menu_bottom li.active,
129 | .menu_bottom li.active a {
130 | color:#48c6d3;
131 | text-decoration:none;
132 | cursor:default;
133 | }
134 |
135 |
136 | .hero h1 {
137 | font-size:22px;
138 | border-top:1px solid #e5e5e5;
139 | border-bottom:1px solid #e5e5e5;
140 | padding:5px 0;
141 | }
142 |
143 | h1, h2 {
144 | font-family:tahoma, sans-serif;
145 | font-weight:normal;
146 | color:#000;
147 | }
148 |
149 | h3, h4, h5, h6 {
150 | font-family:tahoma, sans-serif;
151 | font-weight:bold;
152 | color:#000;
153 | }
154 |
155 | h1 {
156 | font-size:22px;
157 | }
158 |
159 | .form label {
160 | display:inline-block;
161 | padding:0 0 4px 0;
162 | }
163 |
164 | a.button,
165 | .button {
166 | border:1px solid #969696;
167 | text-align:center;
168 | text-decoration:none;
169 | -webkit-border-radius:7px;
170 | -moz-border-radius:7px;
171 | border-radius:7px;
172 | -webkit-box-shadow:#fff 0px 1px 2px inset;
173 | -moz-box-shadow:#fff 0px 1px 2px inset;
174 | box-shadow:#fff 0px 1px 2px inset;
175 | color:#575757;
176 | padding:6px 10px;
177 | font-family:verdana, sans-serif;
178 | text-shadow:1px 1px 0px #fff;
179 | display:inline-block;
180 | background: #CBCBCB;
181 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#CBCBCB), to(#e5e5e5));
182 | background: -webkit-linear-gradient(#CBCBCB, #e5e5e5);
183 | background: -moz-linear-gradient(#CBCBCB, #e5e5e5);
184 | background: -ms-linear-gradient(#CBCBCB, #e5e5e5);
185 | background: -o-linear-gradient(#CBCBCB, #e5e5e5);
186 | background: linear-gradient(#CBCBCB, #e5e5e5);
187 | }
188 | a.button:hover,
189 | .button:hover {
190 | color:#575757;
191 | -webkit-box-shadow:#fff 0px 4px 2px inset;
192 | -moz-box-shadow:#fff 0px 4px 2px inset;
193 | box-shadow:#fff 0px 4px 2px inset;
194 | background: #E5E5E5;
195 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#E5E5E5), to(#cbcbcb));
196 | background: -webkit-linear-gradient(#E5E5E5, #cbcbcb);
197 | background: -moz-linear-gradient(#E5E5E5, #cbcbcb);
198 | background: -ms-linear-gradient(#E5E5E5, #cbcbcb);
199 | background: -o-linear-gradient(#E5E5E5, #cbcbcb);
200 | background: linear-gradient(#E5E5E5, #cbcbcb);
201 | }
202 | a.button:active,
203 | .button:active {
204 | color:#b4b4b4;
205 | text-shadow:1px 1px 0px #000000;
206 | background: #1E1E1E;
207 | -webkit-box-shadow:none;
208 | -moz-box-shadow:none;
209 | box-shadow:none;
210 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#1E1E1E), to(#4f4f4f));
211 | background: -webkit-linear-gradient(#1E1E1E, #4f4f4f);
212 | background: -moz-linear-gradient(#1E1E1E, #4f4f4f);
213 | background: -ms-linear-gradient(#1E1E1E, #4f4f4f);
214 | background: -o-linear-gradient(#1E1E1E, #4f4f4f);
215 | background: linear-gradient(#1E1E1E, #4f4f4f);
216 | border:1px solid #171717;
217 | }
218 |
219 | .table {
220 | width:100%;
221 | }
222 | .table th {
223 | padding:5px 7px;
224 | font-weight:normal;
225 | text-align:left;
226 | font-size:16px;
227 | background:#111;
228 | color:#fff;
229 | }
230 | .table td {
231 | padding:5px 7px;
232 | }
233 | .table tr {
234 | border-bottom:1px solid #e5e5e5;
235 | }
236 | .table tr:last-child {
237 | border:0;
238 | }
239 |
240 | .warning {
241 | border:2px solid #dc102d;
242 | color:#fff;
243 | padding:8px 14px;
244 | background:#ff2443;
245 | -webkit-border-radius:8px;
246 | -moz-border-radius:8px;
247 | border-radius:8px;
248 | }
249 | .success {
250 | border:2px solid #3b8c1b;
251 | color:#fff;
252 | background:#56a637;
253 | padding:8px 14px;
254 | -webkit-border-radius:8px;
255 | -moz-border-radius:8px;
256 | border-radius:8px;
257 | }
258 | .message {
259 | border:2px solid #85ccd3;
260 | color:#85ccd3;
261 | background:#ecfbfd;
262 | padding:8px 14px;
263 | -webkit-border-radius:8px;
264 | -moz-border-radius:8px;
265 | border-radius:8px;
266 | }
267 |
268 |
269 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
270 | }
271 |
272 | @media only screen and (max-width:768px) { /* Tablet custom styles */
273 | }
--------------------------------------------------------------------------------
/stylus/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Stylus" by Renat Rafikov */
2 | html {
3 | background:#999;
4 | }
5 |
6 | body {
7 | font-family:arial, sans-serif;
8 | color:#333;
9 |
10 | background: -moz-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.7) 250px, rgba(255,255,255,0) 600px);
11 | background: -webkit-gradient(linear, left top, left 600px, color-stop(0%,rgba(255,255,255,0)), color-stop(250px,rgba(255,255,255,0.7)), color-stop(600px,rgba(255,255,255,0)));
12 | background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 250px,rgba(255,255,255,0) 600px);
13 | background: -o-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 250px,rgba(255,255,255,0) 600px);
14 | background: -ms-linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 250px,rgba(255,255,255,0) 600px);
15 | background: linear-gradient(top, rgba(255,255,255,0) 0%,rgba(255,255,255,0.7) 250px,rgba(255,255,255,0) 600px);
16 | }
17 |
18 | a { color:#336699; }
19 | a:hover { color:#ea0000; }
20 | a:visited { color:#551a8b; }
21 |
22 | ul li, ol li {
23 | padding:0 0 0.4em 0;
24 | }
25 |
26 |
27 | .container {
28 | max-width:1300px;
29 | margin:0 auto;
30 | }
31 |
32 | .header {
33 | margin:0 0 1em 0;
34 | padding:1em 0 0 0;
35 | }
36 |
37 | .logo {
38 | padding:0 0 0.4em 0;
39 | font-size:24px;
40 | color:#333;
41 | font-weight:bold;
42 | }
43 |
44 | .menu_main {
45 | margin:0.3em 0 0 0;
46 | background-color:#dcdcdc;
47 | height:35px;
48 | background-image: -moz-linear-gradient(top, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
49 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.4)), color-stop(100%,rgba(255,255,255,0)));
50 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
51 | background-image: -o-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
52 | background-image: -ms-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
53 | background-image: linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
54 | -webkit-box-shadow:0 9px 5px -7px #777;
55 | -moz-box-shadow:0 9px 5px -7px #777;
56 | box-shadow:0 9px 5px -7px #777;
57 | }
58 | .menu_main a,
59 | .menu_main a:visited {
60 | color:#333;
61 | text-decoration:none;
62 | display:inline-block;
63 | height:35px;
64 | line-height:35px;
65 | padding:0 44px 0 24px;
66 | font-weight:bold;
67 | border-right:1px solid #fff;
68 | }
69 | .menu_main a:hover,
70 | .menu_main a:hover:visited {
71 | background:#666;
72 | color:#fff;
73 | text-decoration:underline;
74 | }
75 | .menu_main li {
76 | display:inline-block;
77 | float:left;
78 | padding:0;
79 | }
80 |
81 | .menu_main li.active a,
82 | .menu_main li.active a:hover {
83 | color:#000;
84 | text-decoration:none;
85 | cursor:default;
86 | background:#d1d1d1;
87 | background: -moz-linear-gradient(top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
88 | background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0.1)), color-stop(100%,rgba(0,0,0,0)));
89 | background: -webkit-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
90 | background: -o-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
91 | background: -ms-linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
92 | background: linear-gradient(top, rgba(0,0,0,0.1) 0%,rgba(0,0,0,0) 100%);
93 | }
94 |
95 |
96 | .info {
97 | }
98 |
99 | .hero {
100 | color:#111;
101 | padding:0 0 10px 2%;
102 | }
103 | .hero h1 {
104 | font-size:26px;
105 | color:#111;
106 | }
107 |
108 | .article {
109 | background:#f5f5f5;
110 | padding:0 2% 2em 2%;
111 | -webkit-box-shadow:#777 0 9px 5px -7px;
112 | -moz-box-shadow:#777 0 9px 5px -7px;
113 | box-shadow:#777 0 9px 5px -7px;
114 | }
115 |
116 | .footer {
117 | padding:4em 2% 1em 2%;
118 | color:#333;
119 | }
120 |
121 | .copyright {
122 | width:49%;
123 | float:left;
124 | }
125 |
126 | .menu_bottom {
127 | width:50%;
128 | float:right;
129 | text-align:right;
130 | margin:0;
131 | padding:0;
132 | }
133 | .menu_bottom a,
134 | .menu_bottom a:visited {
135 | color:#333;
136 | }
137 | .menu_bottom a:hover,
138 | .menu_bottom a:hover:visited {
139 | color:#000;
140 | }
141 | .menu_bottom li {
142 | display:inline-block;
143 | margin:0 0 0 7px;
144 | }
145 | .menu_bottom li.active,
146 | .menu_bottom li.active a {
147 | color:#333;
148 | text-decoration:none;
149 | cursor:default;
150 | }
151 |
152 | h1, h2 {
153 | font-weight:normal;
154 | color:#000;
155 | }
156 | h1 {
157 | font-size:22px;
158 | }
159 | h3, h4, h5, h6 {
160 | font-weight:bold;
161 | color:#000;
162 | }
163 |
164 | .form label {
165 | display:inline-block;
166 | padding:0 0 4px 0;
167 | }
168 |
169 | a.button,
170 | .button {
171 | text-align:center;
172 | text-decoration:none;
173 | -webkit-border-radius:2px;
174 | -moz-border-radius:2px;
175 | border-radius:2px;
176 | -webkit-box-shadow:rgba(0,0,0,0.9) 0 4px 3px -4px;
177 | -moz-box-shadow:rgba(0,0,0,0.9) 0 4px 3px -4px;
178 | box-shadow:rgba(0,0,0,0.9) 0 4px 3px -4px;
179 | background:#aec720;
180 | color:#fff;
181 | padding:7px 10px;
182 | font-family:verdana, sans-serif;
183 | display:inline-block;
184 | border:0;
185 | }
186 | a.button:hover,
187 | .button:hover {
188 | color:#fff;
189 | background:#c1db2e;
190 | }
191 | a.button:active,
192 | .button:active {
193 | background:#aec720;
194 | text-shadow:1px 1px 1px #8ca20f;
195 | -webkit-box-shadow:#8ca20f 0px -3px 3px inset;
196 | -moz-box-shadow:#8ca20f 0px -3px 3px inset;
197 | box-shadow:#8ca20f 0px -3px 3px inset;
198 | }
199 |
200 | .table {
201 | width:100%;
202 | }
203 | .table th {
204 | padding:5px 7px;
205 | font-weight:normal;
206 | text-align:left;
207 | font-size:1.2em;
208 | }
209 | .table td {
210 | padding:5px 7px;
211 | }
212 | .table tr {
213 | border-bottom:1px solid #888;
214 | }
215 | .table tr:last-child {
216 | border:0;
217 | }
218 |
219 | .warning {
220 | color:#fff;
221 | padding:8px 14px;
222 | background-color:#af243b;
223 | background-image: -moz-linear-gradient(top, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
224 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.4)), color-stop(100%,rgba(255,255,255,0)));
225 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
226 | background-image: -o-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
227 | background-image: -ms-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
228 | background-image: linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
229 | -webkit-box-shadow:0 9px 5px -7px #999;
230 | -moz-box-shadow:0 9px 5px -7px #999;
231 | box-shadow:0 9px 5px -7px #999;
232 | }
233 | .success {
234 | color:#fff;
235 | background:#31b754;
236 | padding:8px 14px;
237 | background-image: -moz-linear-gradient(top, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
238 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.4)), color-stop(100%,rgba(255,255,255,0)));
239 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
240 | background-image: -o-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
241 | background-image: -ms-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
242 | background-image: linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
243 | -webkit-box-shadow:0 9px 5px -7px #999;
244 | -moz-box-shadow:0 9px 5px -7px #999;
245 | box-shadow:0 9px 5px -7px #999;
246 | }
247 | .message {
248 | color:#444;
249 | background:#f1b369;
250 | padding:8px 14px;
251 | background-image: -moz-linear-gradient(top, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 100%);
252 | background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.4)), color-stop(100%,rgba(255,255,255,0)));
253 | background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
254 | background-image: -o-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
255 | background-image: -ms-linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
256 | background-image: linear-gradient(top, rgba(255,255,255,0.4) 0%,rgba(255,255,255,0) 100%);
257 | -webkit-box-shadow:0 9px 5px -7px #999;
258 | -moz-box-shadow:0 9px 5px -7px #999;
259 | box-shadow:0 9px 5px -7px #999;
260 | }
261 |
262 |
263 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
264 | .menu_main a {
265 | padding:7px 15px;
266 | }
267 | .menu_main li {
268 | float:none;
269 | }
270 | }
271 |
272 | @media only screen and (max-width:768px) { /* Tablet custom styles */
273 | .menu_main {
274 | height:auto;
275 | overflow:hidden;
276 | }
277 | .menu_main a {
278 | border:0;
279 | }
280 | }
--------------------------------------------------------------------------------
/teawithmilk/skin.css:
--------------------------------------------------------------------------------
1 | /* Skin "Tea with milk" by Renat Rafikov */
2 | body {
3 | font-family:arial, sans-serif;
4 | color:#222;
5 | background:#f3f1e5;
6 | }
7 |
8 | a { color:#52a6c7; }
9 | a:hover { color:#878787; }
10 | a:visited { color:#9c52c7; }
11 |
12 | ul li, ol li {
13 | padding:0 0 0.4em 0;
14 | }
15 |
16 |
17 | .container {
18 | max-width:1300px;
19 | margin:0 auto;
20 | }
21 |
22 | .header {
23 | margin:1px 0 3em 0;
24 | padding:2em 2% 0 2%;
25 | }
26 |
27 | .logo {
28 | float:left;
29 | display:inline-block;
30 | font-size:22px;
31 | }
32 |
33 | .menu_main {
34 | width:50%;
35 | float:right;
36 | text-align:right;
37 | margin:0.3em 0 0 0;
38 | }
39 |
40 | .menu_main li {
41 | display:inline-block;
42 | padding:0 0 0 7px;
43 | border-left:1px solid #222;
44 | }
45 | .menu_main li:first-child {
46 | border:0;
47 | }
48 | .menu_main a,
49 | .menu_main a:visited {
50 | color:#222;
51 | }
52 | .menu_main li.active,
53 | .menu_main li.active a {
54 | color:#8faf6c;
55 | text-decoration:none;
56 | cursor:default;
57 | }
58 |
59 | .info {
60 | padding:0 0 1em 2%;
61 | }
62 |
63 | .hero {
64 | background:#fff;
65 | border:6px solid #f7f6ee;
66 | -webkit-box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 8px;
67 | -moz-box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 8px;
68 | box-shadow: rgba(0, 0, 0, 0.08) 0px 0px 8px;
69 | padding:5px 0 10px 2%;
70 | margin: 0 2% 0 0;
71 | }
72 |
73 | .footer {
74 | border-top:2px solid #f7f6ee;
75 | padding:2em 2% 3em 2%;
76 | }
77 |
78 | .copyright {
79 | width:49%;
80 | float:left;
81 | font-family:tahoma, sans-serif;
82 | }
83 |
84 | .menu_bottom {
85 | width:50%;
86 | float:right;
87 | text-align:right;
88 | margin:0;
89 | padding:0;
90 | }
91 | .menu_bottom li {
92 | display:inline-block;
93 | margin:0 0 0 7px;
94 | }
95 | .menu_bottom a,
96 | .menu_bottom a:visited {
97 | color:#222;
98 | }
99 | .menu_bottom li.active,
100 | .menu_bottom li.active a {
101 | color:#8faf6c;
102 | text-decoration:none;
103 | cursor:default;
104 | }
105 |
106 |
107 | .hero h1 {
108 | font-size:29px;
109 | }
110 |
111 | h1, h2 {
112 | font-family:tahoma, sans-serif;
113 | font-weight:normal;
114 | }
115 |
116 | h3, h4, h5, h6 {
117 | font-family:tahoma, sans-serif;
118 | font-weight:bold;
119 | }
120 |
121 | h1 {
122 | font-size:22px;
123 | }
124 |
125 | .form label {
126 | display:inline-block;
127 | padding:0 0 4px 0;
128 | }
129 |
130 | a.button,
131 | .button {
132 | border:1px solid #6aa12e;
133 | text-align:center;
134 | text-decoration:none;
135 | -webkit-border-radius:15px;
136 | -moz-border-radius:15px;
137 | border-radius:15px;
138 | -webkit-box-shadow:#e4ffc6 0px 2px 3px inset;
139 | -moz-box-shadow:#e4ffc6 0px 2px 3px inset;
140 | box-shadow:#e4ffc6 0px 2px 3px inset;
141 | background:#88bf4c;
142 | color:#e2eed6;
143 | padding:7px 15px;
144 | font-family:verdana, sans-serif;
145 | text-shadow:1px 1px 0px #6aa12e;
146 | display:inline-block;
147 | }
148 | a.button:hover,
149 | .button:hover {
150 | color:#fff;
151 | -webkit-box-shadow:#e4ffc6 0px 1px 1px inset;
152 | -moz-box-shadow:#e4ffc6 0px 1px 1px inset;
153 | box-shadow:#e4ffc6 0px 1px 1px inset;
154 | background: -webkit-gradient(linear, 0 0, 0 bottom, from(#88bf4c), to(#B6DE8A));
155 | background: -webkit-linear-gradient(#88bf4c, #B6DE8A);
156 | background: -moz-linear-gradient(#88bf4c, #B6DE8A);
157 | background: -ms-linear-gradient(#88bf4c, #B6DE8A);
158 | background: -o-linear-gradient(#88bf4c, #B6DE8A);
159 | background: linear-gradient(#88bf4c, #B6DE8A);
160 | }
161 | a.button:active,
162 | .button:active {
163 | color:#65982d;
164 | text-shadow:1px 1px 1px #b9e38c;
165 | -webkit-box-shadow:#ef420c 0px -3px 3px inset;
166 | -moz-box-shadow:#ef420c 0px -3px 3px inset;
167 | box-shadow:#ef420c 0px -3px 3px inset;
168 | -webkit-box-shadow:#53841e 0px 2px 3px inset;
169 | -moz-box-shadow:#53841e 0px 2px 3px inset;
170 | box-shadow:#53841e 0px 2px 3px inset;
171 | background:#88bf4c;
172 | }
173 |
174 | .table {
175 | width:100%;
176 | }
177 | .table th {
178 | padding:5px 7px;
179 | font-weight:bold;
180 | text-align:left;
181 | }
182 |
183 | .table td {
184 | padding:5px 7px;
185 | }
186 | .table tr {
187 | background:#eaeade;
188 | }
189 | .table tr:nth-child(even) {
190 | background:#f8f7f2;
191 | }
192 | .table tr:first-child {
193 | background:none;
194 | }
195 | .table tr:last-child {
196 | border:0;
197 | }
198 |
199 | .warning {
200 | border:1px solid #ec252e;
201 | color:#fff;
202 | padding:8px 14px;
203 | background:#bb5f5f;
204 | border:3px solid #b74545;
205 | }
206 | .success {
207 | color:#fff;
208 | background:#8faf6c;
209 | padding:8px 14px;
210 | border:3px solid #a9c987;
211 | }
212 | .message {
213 | background:#f8f7f2;
214 | padding:8px 14px;
215 | border:3px solid #ece9d8;
216 | }
217 |
218 |
219 | @media only screen and (max-width:480px) { /* Smartphone custom styles */
220 | .header {
221 | padding:10px 0;
222 | }
223 | }
224 |
225 | @media only screen and (max-width:768px) { /* Tablet custom styles */
226 | }
--------------------------------------------------------------------------------