-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
82 lines (67 loc) · 1.01 KB
/
index.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
74
75
76
77
78
79
80
81
82
html {
min-height: 100%;
}
body {
background-color: #f9f9f9;
font-family: 'Old Standard TT', serif;
margin-bottom:20px;
}
.topbar {
margin: 0 auto;
padding: 15px;
width: 60%;
text-align: center;
margin-bottom: 30px;
}
.topbar img {
width: 200px;
}
.result {
height: 100%;
width: 100%;
display: inline-block;
background-color: white;
border-radius: 6px 6px 3px 3px;
box-sizing: border-box;
box-shadow: 0 1px 2px rgba(25, 25, 25, 0.2);
padding: 20px;
}
.results {
padding: 30px;
text-align: center;
}
[class*="col-"] {
margin-bottom: 15px;
}
.result a {
word-wrap: break-word;
overflow: hidden;
}
.intro {
width: 100%;
text-align: center;
}
@media (max-width: 1000px) {
.topbar img {
width: 100px;
}
.intro h2 {
font-size: 18px;
}
.results {
padding: 10px;
font-size: 18px;
}
.result {
text-align: center;
}
.js-search-results {
text-align: center;
}
h5{
font-size: 12px;
}
h3{
font-size: 20px;
}
}