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

Side by Side Diff: components/safe_browsing/web_ui/resources/safe_browsing.css

Issue 2964693003: Added experiments section and exported the list of SafeBrowsing features in WebUI (Closed)
Patch Set: changed references for pointers Created 3 years, 5 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
OLDNEW
1 1
2 /* Copyright 2017 The Chromium Authors. All rights reserved. 2 /* Copyright 2017 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. */ 4 * found in the LICENSE file. */
5 5 body {
6 color: rgb(48, 57, 66);
7 margin:15px;
8 }
6 p { 9 p {
7 white-space: pre-wrap; 10 white-space: pre-wrap;
8 } 11 }
12
13 .experiments {
14 background-color: #fbfbfb;
15 border: 1px solid #cecece;
16 border-radius: 3px;
17 padding: 19px;
18 line-height: 1.5;
19 }
20
21 #sbTitle {
22 font-size: 2em;
23 margin-bottom: 0.8em;
24 }
25
26 h1, h2, h3, p {
27 font-weight: normal;
28 line-height: 1;
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698