forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.css
53 lines (43 loc) · 821 Bytes
/
popup.css
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* Copyright (c) 2010 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. */
html {
overflow-x: hidden;
}
body {
font-family: Helvetica, Arial, sans-serif;
}
#search_container {
text-align: center;
}
#search {
width: 85%;
}
.app {
width: 100%;
margin-top: 7px;
margin-bottom: 7px;
margin-left: 2px;
margin-right: 20px;
white-space: nowrap;
}
.app img {
vertical-align: middle;
height: 38px;
width: 38px;
}
.app_title {
vertical-align: middle;
margin-left: 5px;
}
.app:hover {
background-color: rgb(250,250,250);
cursor:pointer;
outline: 1px dotted rgb(100,100,200);
}
.app_selected,.app_selected:hover {
background-color: rgb(230,230,230);
}
#appstore_link {
display: none;
}