]> git.ktnx.net Git - icedeb.git/blob - icedeb.css
03f22b7407e54d31bc0a0f2bae7520fbc3d54900
[icedeb.git] / icedeb.css
1 body { padding: 1ex; }
2 #clip-pot { position: absolute; left: -1000px; }
3 #clipboard {
4   margin: 2px;
5   min-height: 1.5em;
6   max-height: 2.5em;
7   border: 1px solid hsl(0,0%,69.4%);
8   box-shadow: 0 0 0 0 hsla(208.1, 100%, 69%, 0);
9   transition: 250ms box-shadow;
10 }
11 #clipboard:focus {
12     border-color: hsl(204.6, 94.5%, 50.4%);
13     box-shadow: 0 0 0 2px hsla(208.1, 100%, 69%, 0.8);
14     outline: none;
15 }
16
17 #button-list-container {
18   background: linear-gradient(to bottom, hsl(222,4%,89%) 0%, hsl(0,0%,100%) 100%);
19   display: flex;
20   flex-direction: column;
21   padding: 0.1ex;
22 }
23 #button-list-container > * {
24   margin: 0.5ex;
25   padding 0.1ex;
26 }
27
28 .icedeb-button {
29   border-radius: 5px;
30   cursor: pointer;
31   color: blue;
32 }
33 .icedeb-button:hover {
34     text-decoration: underline;
35 }
36 .hidden { display: none; }
37 a, a:visited { color: blue; }
38 #error {
39   display: block;
40   background: hsl(48.2,100%,90%);
41   visibility: visible;
42   opacity: 1;
43   transition: visibility 250ms, opacity 250ms;
44 }
45 #error.hidden {
46   display: block;
47   visibility: hidden;
48   opacity: 0;
49   transition: none;
50 }