PluginProbe
Custom CSS Pro / trunk
Custom CSS Pro vtrunk
custom-css-pro / css / custom-css-pro.css

custom-css-pro.css in Custom CSS Pro trunk, at css/custom-css-pro.css

202 lines 4.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* http://meyerweb.com/eric/tools/css/reset/
2 v2.0 | 20110126
3 License: none (public domain)
4 */
5
6 html, body, div, span, applet, object, iframe,
7 h1, h2, h3, h4, h5, h6, p, blockquote, pre,
8 a, abbr, acronym, address, big, cite, code,
9 del, dfn, em, img, ins, kbd, q, s, samp,
10 small, strike, strong, sub, sup, tt, var,
11 b, u, i, center,
12 dl, dt, dd, ol, ul, li,
13 fieldset, form, label, legend,
14 table, caption, tbody, tfoot, thead, tr, th, td,
15 article, aside, canvas, details, embed,
16 figure, figcaption, footer, header, hgroup,
17 menu, nav, output, ruby, section, summary,
18 time, mark, audio, video {
19 margin: 0;
20 padding: 0;
21 border: 0;
22 font-size: 100%;
23 font: inherit;
24 vertical-align: baseline;
25 }
26 /* HTML5 display-role reset for older browsers */
27 article, aside, details, figcaption, figure,
28 footer, header, hgroup, menu, nav, section {
29 display: block;
30 }
31 body {
32 line-height: 1;
33 }
34 ol, ul {
35 list-style: none;
36 }
37 blockquote, q {
38 quotes: none;
39 }
40 blockquote:before, blockquote:after,
41 q:before, q:after {
42 content: '';
43 content: none;
44 }
45 table {
46 border-collapse: collapse;
47 border-spacing: 0;
48 }
49 *{
50 box-sizing:border-box;
51 }
52
53 /* Plugin Styles */
54 body{
55 font-family: 'Open Sans', sans-serif;
56 font-size:16px;
57 line-height:1em;
58 }
59
60 #ccp-bar{
61 -webkit-touch-callout: none;
62 -webkit-user-select: none;
63 -khtml-user-select: none;
64 -moz-user-select: none;
65 -ms-user-select: none;
66 user-select: none;
67 }
68
69 #ccp-iframe{
70 width:calc(100% - 420px);
71 height:100%;
72 position:fixed;
73 left:420px;
74 top:0;
75 border-width:0;
76 }
77
78 #ccp-section{
79 position:fixed;
80 left:0;
81 top:0;
82 width:420px;
83 background-color:#272727;
84 height:100%;
85 z-index:99999999;
86 -webkit-box-shadow: 0 0 50px 30px rgba(0,0,0,0.4);
87 -moz-box-shadow: 0 0 50px 30px rgba(0,0,0,0.4);
88 box-shadow: 0 0 50px 30px rgba(0,0,0,0.4);
89 }
90
91 #ccp-bar{
92 position:relative;
93 height:48px;
94 background-color:#171814;
95 line-height:48px;
96 text-align: right;
97 padding:0 15px;
98 font-size:0;
99 border-bottom:1px solid #3C3D39;
100 }
101
102 #ccp-data{
103 height: -webkit-calc(100% - 48px);
104 height: -moz-calc(100% - 48px);
105 height: -o-calc(100% - 48px);
106 height: calc(100% - 48px);
107 }
108
109 .ccp-btn{
110 text-transform:uppercase;
111 font-weight:600;
112 font-size:11px;
113 padding:6px 12px;
114 cursor:pointer;
115 border: 1px solid #1D1D1D;
116 color: #A7A7A7;
117 background: #474747;
118
119 background-color: #00729F;
120 border-color: #001018;
121 color: rgba(255, 255, 255, 0.79);
122 }
123
124 .active{
125 background-color: #2C8DB4;
126 border-color: #001018;
127 color: rgba(255, 255, 255, 0.79);
128 }
129
130 .ccp-close{
131 background-repeat: no-repeat;
132 background-position: center center;
133 background-size: 20px auto;
134 background-image: url(../img/left.png);
135 position:absolute;
136 left:0;
137 top:0;
138 width:43px;
139 height:100%;
140 cursor:pointer;
141 }
142
143 .ace_editor{
144 background-color:transparent !important;
145 }
146
147 #ccp-bg{
148 position:fixed;
149 left:0;
150 top:0;
151 width:100%;
152 height:100%;
153 z-index:100000001;
154 background-color:#272727;
155 }
156
157 #ccp-loading{
158 background-image:url(../img/cog.png);
159 width:48px;
160 height:48px;
161 background-size:48px;
162 z-index:100000002;
163 position:fixed;
164 top:50%;
165 left:50%;
166 margin-top:-24px;
167 margin-left:-24px;
168 animation-name: spin;
169 animation-duration: 4s;
170 -webkit-animation-iteration-count:infinite;
171 animation-iteration-count:infinite;
172 -webkit-animation-timing-function: linear;
173 animation-timing-function: linear;
174 }
175
176 .ccp-bg-panel #ccp-loading{
177 -webkit-animation-delay: 500ms;
178 animation-delay: 500ms;
179 }
180
181 @-moz-keyframes spin{
182 from {-moz-transform: rotate(0deg);}
183 to {-moz-transform: rotate(360deg);}
184 }
185 @-webkit-keyframes spin{
186 from {-webkit-transform: rotate(0deg);}
187 to {-webkit-transform: rotate(360deg);}
188 }
189 @keyframes spin{
190 from {transform:rotate(0deg);}
191 to {transform:rotate(360deg);}
192 }
193
194 .ccp-visual-editor{
195 display: inline-block;
196 margin-right:15px;
197 line-height: 27px;
198 padding: 0px 10px;
199 text-decoration: none;
200 color: #b7b7b7;
201 background-color: #393937;
202 }