-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwikipedia.css
More file actions
69 lines (61 loc) · 1.38 KB
/
Copy pathwikipedia.css
File metadata and controls
69 lines (61 loc) · 1.38 KB
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
body, button {
font-family: Consolas, monospace;
}
button, a[role="button"] {
width: 100%;
}
a[role="button"], a[role="button"]:hover {
color: inherit;
background-color: #ddd;
border: 1px solid transparent;
}
header {
margin-top: 20px;
}
@media (max-width: 480px) {
header h1 {
font-size: 28px;
}
}
/* compress white space in the search form */
#formRow {
margin: 0 -7.5px;
}
#formRow > div {
padding: 0 7.5px;
}
.result a {
color: inherit;
text-decoration: none;
}
.result .well {
transition: all 0.5s ease;
}
.result .well:hover {
/*background-color: #aaa;*/
/* styles from Bootstrap's <input type="text"> */
/*border-color: #66afe9;*/
border-color: #e3e3e3;
outline: 0;
/*-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);*/
/*box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);*/
box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(200,200,200,0.6);
}
.result img {
/* margin-top: -43px; /* move it back above the header, negative line-height+margin-bottom */
transition: all 0.5s ease;
filter: saturate(0%);
-webkit-filter: saturate(0%);
-ms-filter: saturate(0%);
}
.result .well:hover img {
filter: initial;
-webkit-filter: initial;
-ms-filter: initial;
}
.resultImgBox {
margin: 0 0 10px 10px;
width: 100px;
/*height: 100px;*/
/*background-color: white;*/
}