-
Notifications
You must be signed in to change notification settings - Fork 1
/
demo.css
71 lines (58 loc) · 1 KB
/
demo.css
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
.demo-pix {
display: block;
margin: 3em auto;
}
.code {
margin: 3em auto;
max-width: 40em;
}
.code ul {
background-color: #AAA;
margin: 0;
padding: .5em;
box-shadow: 2px 2px 2px #777;
}
.code li {
list-style: none;
font-family: monospace;
}
.code .indent1 { margin-left: 3em }
.code .indent2 { margin-left: 6em}
.tool { font-family: monospace }
.caption {
text-align: center;
margin: .2em 0 1em 0;
font-style: italic;
}
#divify-form li {
list-style: none;
line-height: 1.5em;
}
#divify-file-input { width: 25em }
.input-label {
display: inline-block;
width: 6em;
}
.input-value {
display: inline-block;
}
.popup {
position: fixed;
left: 30%;
top: 20%;
width: 40%;
margin: 0 auto;
border: solid 2px black;
border-radius: 10px;
background: white;
padding: 1em;
text-align: center;
}
.popup textarea {
width: 100%;
height: 300px;
}
.popup > * {
margin-top: 0;
margin-bottom: .5em;
}