Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 /* Copyright (c) 2016 The Chromium Authors. All rights reserved. | |
| 2 * Use of this source code is governed by a BSD-style license that can be | |
| 3 * found in the LICENSE file. | |
| 4 */ | |
| 5 | |
| 6 h1 { | |
|
dewittj
2016/05/24 18:13:08
is this style copied from somewhere? I would pref
chili
2016/05/24 22:52:30
Polymer is just a way to more easily split html te
| |
| 7 color: rgb(74, 142, 230); | |
| 8 margin: 0; | |
| 9 padding: 0; | |
| 10 } | |
| 11 | |
| 12 td { | |
| 13 padding: 4px; | |
| 14 } | |
| 15 | |
| 16 tr:nth-child(odd) { | |
| 17 background-color: azure; | |
| 18 } | |
| 19 | |
| 20 th { | |
| 21 background-color: navy; | |
| 22 color: white; | |
| 23 font-weight: bold; | |
| 24 } | |
| 25 | |
| OLD | NEW |