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

Side by Side Diff: chrome/browser/prerender/tools/prerender_test_server/default.css

Issue 2201093003: NoStatePrefetch: Add a more dummy prerender_test_server.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Renamed to tools/prerender_test_server/prerender_test_server.py 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
OLDNEW
(Empty)
1 /* Copyright 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 body {
7 // background-color: #aaaaaa;
8 }
9
10 div#container {
11 top: 0;
12 left: 0;
13 width: 100%;
14 height: 80%;
15 position: absolute;
16 display: table;
17 background-color: #ffffff;
18 font-size: 25px;
19 font-family: Verdana, Geneva, sans-serif;
20 }
21
22 div#inner {
23 display: table-cell;
24 vertical-align: middle;
25 text-align: center;
26 width: 50%;
27 }
28
29 form input {
30 height: 50px;
31 font-size: 35px;
32 }
33
34 form input#url {
35 padding: 4px;
36 width: 500px;
37 text-align: left;
38 margin-right: .5em;
39 }
40
41 form input#url_submit {
42 width: 200px;
43 background: #CCCCCC;
44 cursor: pointer;
45 }
46
47 div#learn_more {
48 padding-top: 2em;
49 font-size: 18px;
50 font-style: italic;
51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698