blob: 7c19cd148a454b5751f5ba1d550c43c2508dfbd8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/* Copyright (c) 2011 The Chromium Authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*
* This file contains CSS shared by history and downloads. NOTE: These pages are
* overdue for a revamp so it's more or less deprecated to use or edit this
* file, or copy its contents.
*/
body {
margin: 10px 10px 34px 10px;
}
.header {
clear: both;
overflow: auto;
}
.header .logo {
float: left;
}
html[dir='rtl'] .logo,
html[dir='rtl'] .form {
float: right;
}
.header .form {
-webkit-margin-start: 12px;
float: left;
margin-top: 22px;
}
|