-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstylesheet.css
77 lines (65 loc) · 1.37 KB
/
stylesheet.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
.title {
font-size: .8em;
}
.titleDir {
font-size: .9em;
padding-left: 7px;
}
.result-pathDir {
padding-left: 7px;
font-size: .7em;
}
.result-path {
font-size: .6em;
}
.result-detail {
padding-left: 7px;
padding-bottom: 4px;
font-size: .8em;
color:rgb(200,200,200);
}
.icon-info-frame{
padding-top: 5px;
}
.directory-content {
border-radius: 7px;
padding: 10px;
width: 100px;
height: 50px;
background-color: rgba(0.0, 0.0, 0.0, 0.55);
color: white;
}
.result {
width: 272px; /* Same width as two normal results + spacing */
height: 118px; /* Aspect ratio = 1.75. Normal US business card ratio */
border-radius: 4px;
padding: 3px;
border: 1px rgba(0,0,0,0);
transition-duration: 100;
}
.result-content {
border-radius: 7px;
padding: 4px;
width: 200px;
height: 70px;
background-color: rgba(0.0, 0.0, 0.0, 0.3);
color: white;
}
.result:hover {
background-color: rgba(255,255,255,0.1);
transition-duration: 100;
}
.result:focus,
.app-well-app:focus > .overview-icon,
.search-result-content:focus > .overview-icon,
.result:selected,
.app-well-app:selected > .overview-icon,
.search-result-content:selected > .overview-icon {
background-color: rgba(255,255,255,0.33);
}
.tracker-grid {
border-radius: 7px;
padding: 4px;
width: 300px;
height: 70px;
}