-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
93 lines (78 loc) · 1.52 KB
/
layout.css
File metadata and controls
93 lines (78 loc) · 1.52 KB
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
* {
font-family: "Meiryo";
font-size: 12px;
}
body, html {
margin: 0;
}
html {
height: 100%;
background-color: transparent;
/*background-color: rgba(255, 0, 0, 0.2);*/
}
.resizeHandle {
background-image: url(handle.png);
background-position: bottom right;
background-repeat: no-repeat;
box-sizing: border-box;
}
fieldset {
border: none;
padding: 0;
margin: 0;
text-align: center;
}
.radio-inline__input {
clip: rect(1px, 1px, 1px, 1px);
position: absolute !important;
}
.radio-inline__label {
display: inline-block;
padding: 0.5rem 1rem;
margin-right: 18px;
border-radius: 3px;
transition: all .2s;
}
.radio-inline__input:checked + .radio-inline__label {
background: #B54A4A;
color: #fff;
text-shadow: 0 0 1px rgba(0,0,0,.7);
}
.radio-inline__input:focus + .radio-inline__label {
outline-color: #4D90FE;
outline-offset: -2px;
outline-style: auto;
outline-width: 5px;
}
.ddHeader {
background-color: blue;
color: white;
font-size: 20px;
padding: 3px;
}
.ddHeader.passageok {
background: rgba(255, 0, 0, 1.0);
}
#canvasWrapper {
width: 100%;
}
#canvas {
background-color: transparent;
}
#ddFooter {
background: rgba(0, 0, 0, 0.5);
color: #fff;
padding: 5px;
font: 40px monospace;
}
pre, #traplist, .debug {
word-break: break-all;
white-space: pre-wrap;
background: rgba(0, 0, 0, 0.7);
color: #fff;
padding: 5px;
font: 14px monospace;
}
th,td {
color: #fff;
}