summaryrefslogtreecommitdiffstats
path: root/devtools/client/webide/themes/deck.css
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /devtools/client/webide/themes/deck.css
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'devtools/client/webide/themes/deck.css')
-rw-r--r--devtools/client/webide/themes/deck.css91
1 files changed, 91 insertions, 0 deletions
diff --git a/devtools/client/webide/themes/deck.css b/devtools/client/webide/themes/deck.css
new file mode 100644
index 000000000..30537f612
--- /dev/null
+++ b/devtools/client/webide/themes/deck.css
@@ -0,0 +1,91 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+html {
+ font: message-box;
+ font-size: 0.9em;
+ font-weight: normal;
+ margin: 0;
+ height: 100%;
+ color: #737980;
+ background-color: #ededed;
+}
+
+body {
+ margin: 0;
+ padding: 20px;
+ background-image: linear-gradient(#fff, #ededed 100px);
+}
+
+.text-input {
+ display: flex;
+}
+
+.text-input input {
+ flex: 0.5;
+ margin-left: 5px;
+}
+
+h1 {
+ font-size: 2em;
+ font-weight: lighter;
+ line-height: 1.2;
+ margin: 0;
+ margin-bottom: .5em;
+}
+
+#controls {
+ float: right;
+ position: relative;
+ top: -10px;
+ right: -10px;
+}
+
+#controls > a {
+ color: #4C9ED9;
+ font-size: small;
+ cursor: pointer;
+ border-bottom: 1px dotted;
+ margin-left: 10px;
+}
+
+table {
+ font-family: monospace;
+ border-collapse: collapse;
+}
+
+th, td {
+ padding: 5px;
+ border: 1px solid #eee;
+}
+
+th {
+ min-width: 100px;
+}
+
+th:first-of-type, td:first-of-type {
+ text-align: left;
+}
+
+li {
+ list-style: none;
+ padding: 2px;
+}
+
+li > label:hover {
+ background-color: rgba(0,0,0,0.02);
+}
+
+li > label > span {
+ display: inline-block;
+}
+
+input, select {
+ box-sizing: border-box;
+}
+
+select {
+ padding-top: 2px;
+ padding-bottom: 2px;
+}