PluginProbe
Multi Device Switcher / 1.5.2
Multi Device Switcher v1.5.2
trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.4.0 1.4.1 1.4.2 1.5.0 1.5.1 1.5.2 1.5.3 1.5.4 1.6.0 1.6.1 1.6.2 All 34 releases
multi-device-switcher / pc-switcher.css

pc-switcher.css in Multi Device Switcher 1.5.2, at pc-switcher.css

50 lines 1.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .pc-switcher {
2 clear: both;
3 text-align: center;
4 margin: 1.4em auto;
5 }
6 .pc-switcher a,
7 .pc-switcher span {
8 padding: 0.4em 8%;
9 text-align: center;
10 border: 1px solid #0059A8;
11 border-left: none;
12 color: #fff !important;
13 font-weight: bold;
14 text-decoration: none;
15 }
16 .pc-switcher a {
17 background-color: #0074DA;
18 background-image: -moz-linear-gradient(#0074DA, #004A8D);
19 background-image: -o-linear-gradient(#0074DA, #004A8D);
20 background-image: -ms-linear-gradient(#0074DA, #004A8D);
21 background-image: -webkit-gradient(linear, left top, left bottom, from(#0074DA), to(#004A8D));
22 background-image: -webkit-linear-gradient(#0074DA, #004A8D);
23 background-image: linear-gradient(#0074DA, #004A8D);
24 }
25 .pc-switcher a:hover {
26 background-color: #0059A8;
27 background-image: -moz-linear-gradient(#0059A8, #004A8D);
28 background-image: -o-linear-gradient(#0059A8, #004A8D);
29 background-image: -ms-linear-gradient(#0059A8, #004A8D);
30 background-image: -webkit-gradient(linear, left top, left bottom, from(#0059A8), to(#004A8D));
31 background-image: -webkit-linear-gradient(#0059A8, #004A8D);
32 background-image: linear-gradient(#0059A8, #004A8D);
33 }
34 .pc-switcher span.active {
35 background-color: #00305C;
36 }
37 .pc-switcher a:first-child,
38 .pc-switcher span:first-child {
39 border-left: 1px solid #0074DA;
40 -webkit-border-radius: 2.4em 0 0 2.4em;
41 -moz-border-radius: 2.4em 0 0 2.4em;
42 border-radius: 2.4em 0 0 2.4em;
43 }
44 .pc-switcher a:last-child,
45 .pc-switcher span:last-child {
46 -webkit-border-radius: 0 2.4em 2.4em 0;
47 -moz-border-radius: 0 2.4em 2.4em 0;
48 border-radius: 0 2.4em 2.4em 0;
49 }
50