Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Unified Diff: appengine/machine_provider/static/style.css

Issue 2196623004: Add basic Machine Provider UI (Closed) Base URL: https://github.com/luci/luci-py.git@master
Patch Set: Fix Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « appengine/machine_provider/models.py ('k') | appengine/machine_provider/templates/base.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: appengine/machine_provider/static/style.css
diff --git a/appengine/machine_provider/static/style.css b/appengine/machine_provider/static/style.css
new file mode 100644
index 0000000000000000000000000000000000000000..fbb57473751a9fbbadc5bbf4cdea9e718b4238f9
--- /dev/null
+++ b/appengine/machine_provider/static/style.css
@@ -0,0 +1,54 @@
+/* Copyright 2016 The LUCI Authors. All rights reserved.
+ * Use of this source code is governed under the Apache License, Version 2.0
+ * that can be found in the LICENSE file.
+ */
+a {
+ text-decoration: none;
+}
+
+a.active {
+ color: #d14836;
+}
+
+a.link {
+ color: #15c;
+}
+
+a.visited {
+ color: #61c;
+}
+
+body {
+ font-family: Arial, sans-serif;
+ font-size: 13px;
+}
+
+div.notice {
+ background: #f9edbe;
+ color: #333;
+ outline: #f0c36d 1px solid;
+ padding: 8px;
+}
+
+table {
+ border: none;
+}
+
+td {
+ color: #333;
+ padding-left: 6px;
+ padding-right: 6px;
+ white-space: nowrap;
+}
+
+th {
+ background: #f5f5f5;
+ font-weight: normal;
+ padding-left: 6px;
+ padding-right: 6px;
+ text-align: left;
+}
+
+tr:hover {
+ background: #d4e8ff;
+}
« no previous file with comments | « appengine/machine_provider/models.py ('k') | appengine/machine_provider/templates/base.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698