|
8 | 8 | * |
9 | 9 | */ |
10 | 10 |
|
11 | | -@font-face{font-family:'Open Sans';font-style:normal;font-weight:400;src:local('Open Sans'),local('OpenSans'),url(http://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff) format('woff')}@font-face{font-family:'Open Sans';font-style:normal;font-weight:700;src:local('Open Sans Bold'),local('OpenSans-Bold'),url(http://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) format('woff')} |
| 11 | +@font-face { |
| 12 | + font-family: "Open Sans"; |
| 13 | + font-style: normal; |
| 14 | + font-weight: 400; |
| 15 | + src: local("Open Sans"), local("OpenSans"), |
| 16 | + url(https://fonts.gstatic.com/s/opensans/v13/cJZKeOuBrn4kERxqtaUH3bO3LdcAZYWl9Si6vvxL-qU.woff) |
| 17 | + format("woff"); |
| 18 | +} |
| 19 | + |
| 20 | +@font-face { |
| 21 | + font-family: "Open Sans"; |
| 22 | + font-style: normal; |
| 23 | + font-weight: 700; |
| 24 | + src: local("Open Sans Bold"), local("OpenSans-Bold"), |
| 25 | + url(https://fonts.gstatic.com/s/opensans/v13/k3k702ZOKiLJc3WVjuplzKRDOzjiPcYnFooOUGCOsRk.woff) |
| 26 | + format("woff"); |
| 27 | +} |
12 | 28 |
|
13 | 29 | #colorPick * { |
14 | | - -webkit-transition: all linear .2s; |
15 | | - -moz-transition: all linear .2s; |
16 | | - -ms-transition: all linear .2s; |
17 | | - -o-transition: all linear .2s; |
18 | | - transition: all linear .2s; |
| 30 | + -webkit-transition: all linear 0.2s; |
| 31 | + -moz-transition: all linear 0.2s; |
| 32 | + -ms-transition: all linear 0.2s; |
| 33 | + -o-transition: all linear 0.2s; |
| 34 | + transition: all linear 0.2s; |
19 | 35 | } |
20 | 36 |
|
21 | 37 | #colorPick { |
22 | | - background: rgba(255, 255, 255, 0.85); |
23 | | - -webkit-backdrop-filter: blur(15px); |
24 | | - position: absolute; |
25 | | - border-radius: 5px; |
26 | | - box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); |
27 | | - padding: 15px; |
28 | | - font-family: "Open Sans", sans-serif; |
29 | | - width: 140px; |
| 38 | + background: rgba(255, 255, 255, 0.85); |
| 39 | + -webkit-backdrop-filter: blur(15px); |
| 40 | + position: absolute; |
| 41 | + border-radius: 5px; |
| 42 | + box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2); |
| 43 | + padding: 15px; |
| 44 | + font-family: "Open Sans", sans-serif; |
| 45 | + width: 140px; |
30 | 46 | } |
31 | 47 |
|
32 | 48 | #colorPick span { |
33 | | - font-size: 9pt; |
34 | | - text-transform: uppercase; |
35 | | - font-weight: bold; |
36 | | - color: #bbb; |
37 | | - margin-bottom: 5px; |
38 | | - display: block; |
39 | | - clear: both; |
| 49 | + font-size: 9pt; |
| 50 | + text-transform: uppercase; |
| 51 | + font-weight: bold; |
| 52 | + color: #bbb; |
| 53 | + margin-bottom: 5px; |
| 54 | + display: block; |
| 55 | + clear: both; |
40 | 56 | } |
41 | 57 |
|
42 | 58 | .customColorHash { |
43 | | - border-radius: 5px; |
44 | | - height: 23px; |
45 | | - width: 122px; |
46 | | - margin: 1px 4px ; |
47 | | - padding: 0 4px; |
48 | | - border: 1px solid #babbba; |
49 | | - outline: none; |
| 59 | + border-radius: 5px; |
| 60 | + height: 23px; |
| 61 | + width: 122px; |
| 62 | + margin: 1px 4px; |
| 63 | + padding: 0 4px; |
| 64 | + border: 1px solid #babbba; |
| 65 | + outline: none; |
50 | 66 | } |
51 | 67 | .customColorHash.error { |
52 | | - border-color: #ff424c; |
53 | | - color: #ff424c; |
| 68 | + border-color: #ff424c; |
| 69 | + color: #ff424c; |
54 | 70 | } |
55 | 71 |
|
56 | 72 | .colorPickButton { |
57 | | - border-radius: 5px; |
58 | | - width: 20px; |
59 | | - height: 20px; |
60 | | - margin: 0px 3px; |
61 | | - cursor: pointer; |
62 | | - display: inline-block; |
63 | | - border: thin solid #eee; |
| 73 | + border-radius: 5px; |
| 74 | + width: 20px; |
| 75 | + height: 20px; |
| 76 | + margin: 0px 3px; |
| 77 | + cursor: pointer; |
| 78 | + display: inline-block; |
| 79 | + border: thin solid #eee; |
64 | 80 | } |
65 | 81 |
|
66 | 82 | .colorPickButton:hover { |
67 | | - transform: scale(1.1); |
| 83 | + transform: scale(1.1); |
68 | 84 | } |
69 | 85 |
|
70 | 86 | .colorPickDummy { |
71 | | - background: #fff; |
72 | | - border: 1px dashed #bbb; |
| 87 | + background: #fff; |
| 88 | + border: 1px dashed #bbb; |
73 | 89 | } |
0 commit comments