blob: 0e5ed0191e397af22a89e21c593250cc0036130b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
.edit {
background-color: var(--color1);
}
#linklist {
background-color: var(--color1);
}
#submit {
background-color: var(--color1);
}
#copy {
background-color: var(--color1);
}
#artedit {
background-color: var(--color1);
}
details {
background-color: var(--color1);
}
details#editinfo {
position: fixed;
top: 0;
left: 10%;
width: 40%;
}
details#editcss {
position: fixed;
top: 0;
left: 50%;
width: 40%;
}
div#submit {
position: fixed;
top: 0;
width: 10%;
}
textarea#html {
width: 100%;
height: 100%;
font-size: 1em;
padding-top: 40px;
padding-bottom: 40px;
font-family: serif;
padding-left: 2%;
padding-right: calc(50% - 500px);
}
div#copy {
position: fixed;
bottom: 0;
}
div#linklist {
position: fixed;
bottom: 0;
right: 0;
min-width: 10%;
max-width: 50%;
max-height: 50%;
overflow-y: auto;
}
div#linklist div#roll {
display: none;
}
div#linklist:hover div#roll {
display: block;
width: auto;
}
div#roll ul {
list-style: none;
margin: 0;
padding: 0;
}
details label {
display: block;
margin-top: 4px;
}
textarea#css {
width: 100%;
height: 200px;
}
details select, details input, details label, details textarea#css {
width: 100%;
}
fieldset {
margin: 0;
padding: 0;
border: none;
}
summary, div#linklist, div#copy, div#submit {
border: ridge 1px grey;
}
|