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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 /* Copyright 2016 The LUCI Authors. All rights reserved.
2 * Use of this source code is governed under the Apache License, Version 2.0
3 * that can be found in the LICENSE file.
4 */
5 a {
6 text-decoration: none;
7 }
8
9 a.active {
10 color: #d14836;
11 }
12
13 a.link {
14 color: #15c;
15 }
16
17 a.visited {
18 color: #61c;
19 }
20
21 body {
22 font-family: Arial, sans-serif;
23 font-size: 13px;
24 }
25
26 div.notice {
27 background: #f9edbe;
28 color: #333;
29 outline: #f0c36d 1px solid;
30 padding: 8px;
31 }
32
33 table {
34 border: none;
35 }
36
37 td {
38 color: #333;
39 padding-left: 6px;
40 padding-right: 6px;
41 white-space: nowrap;
42 }
43
44 th {
45 background: #f5f5f5;
46 font-weight: normal;
47 padding-left: 6px;
48 padding-right: 6px;
49 text-align: left;
50 }
51
52 tr:hover {
53 background: #d4e8ff;
54 }
OLDNEW
« 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