1div.dokuwiki {
2  .code-copy-btn {
3    display: none !important;
4  }
5  div.cp2clipcont {
6    position: relative;
7    margin:0;
8    padding:0;
9    border: none;
10    overflow: auto;
11    & button {
12      position: absolute;
13      top: 0;
14      right: 0;
15      background: #bbb url( 'clipmini.svg' ) 0 0 no-repeat;
16      background-size: 12px; /*15px;*/
17      width: 13px; /*17px;*/
18      height: 18px; /*22px;*/
19    }
20    &.desktop button {
21      visibility: hidden;
22    }
23    &.desktop:hover button {
24      visibility: visible;
25    }
26  }
27}
28.cp2clipmsg {
29  top: 50px;
30  left: 50%;
31  transform: translate(-50%,0);
32  position: fixed;
33  padding: .7em;
34  border-radius: 7px;
35  font-size: 1.5rem;
36}
37#cp2clipok {
38  background: #00b871; /* #00fa9a; /* X11 MediumSpringGreen */
39  color: #111;
40}
41#cp2clipnok {
42  background: #c71585; /* X11 MediumVioletRed */
43  color: #ccc;
44}
45
46