-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
176 lines (154 loc) · 2.86 KB
/
style.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
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
/* Style the buttons that are used to open and close the accordion panel */
* {
box-sizing:border-box;
}
.accordionentry{
border: 1px solid lightgray;
border-radius:5px;
}
pre,textarea{
font-family: "Courier New", Courier, monospace;
}
.presim {
font-family: "Courier New", Courier, monospace;
white-space: pre-wrap; /* CSS 3 */
white-space: -moz-pre-wrap; /* Mozilla, since 1999 */
white-space: -pre-wrap; /* Opera 4-6 */
white-space: -o-pre-wrap; /* Opera 7 */
word-wrap: break-word; /* Internet Explorer 5.5+ */
}
button.accordion {
background-color: #eee;
color: #444;
padding: 10px;
width: 100%;
text-align: left;
border: none;
outline: none;
border-radius:5px;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
button.accordion.active, button.accordion:hover {
background-color: #ddd;
}
/* Style the accordion panel. Note: hidden by default */
div.panel {
padding: 0 18px;
background-color: rgba(128,128,128,0.05);
}
ul {
font-size:0.8em;
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
display:inline-block;
}
li {
float: left;
display: block;
padding-left: 8px;
padding-right: 16px;
padding-top:5px;
padding-bottom:5px;
}
li a {
display: inline-block;
text-decoration: underline;
background-color: rgba(128,200,128,0.3);
padding:3px;
border-radius:3px;
}
/*
li a:hover {
}
*/
.detailname{
font-weight:900;
color:#1d53ec;
}
.detailvalue{
background-color: rgb(250,250,250);
white-space: nowrap;
display:block;
}
body {
font-family: "Courier New", Courier, monospace;
font-size:1em;
background-color:white;
}
.warning{
font-weight:bold;
color:red;
}
form{
display: inline-block;
border: 1px solid gray;
width:100%;
min-height: 100px;
position: relative;
}
input{
margin-bottom:5px;
}
#preview{
height:80px !important;
border: 1px solid gray;
margin-right:20px;
margin-left: 5px;
margin-top:5px;
margin-bottom:-5px;
float:left;
}
#formright{
}
#data-overlay{
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
background-color:rgba(128,128,128,0.5);
padding:20px;
display:none;
}
#data-overlay-inner{
background-color:white;
border-radius: 25px;
padding:20px;
width:100%;
height:100%;
text-align: right;
}
#data-overlay a{
}
#data-overlay-title{
float:left;
}
#data-overlay-contentcontainer{
position: absolute;
top: 60px;
bottom: 40px;
right: 30px;
left: 30px;
text-align: left;
background-color: lightgray;
}
#data-overlay-content{
width:100%;
height:100%;
background-color: lightgray;
resize: none;
white-space:pre;
overflow:scroll;
}
#branding-bottom{
right:0;
opacity: 0.75;
margin-top:10px;
max-height:50px;
overflow:hidden;
}
#info{
min-height:100px;
}