-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelastic.css
97 lines (97 loc) · 1.75 KB
/
elastic.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
:root{
--side-margin: 20px;
--grey-font: #666;
--background-color: #DDD;
--result-background-color: #F0F0F0;
--shadow-color: #AAA;
}
#app {
margin: 0 var(--side-margin);
}
body {
background: var(--background-color);
font-family: "Merriweather Sans", sans-serif;
font-size: 14px;
}
h1 {
text-align: center;
font-family: "Merriweather Sans Bold";
}
input {
padding: 5px 5px;
border: 2px solid #aaa;
border-radius: 0px;
box-sizing: border-box;
background-color: var(--result-background-color);
/* box-shadow: 0px 0px 2px 0px var(--shadow-color); */
}
a {
color: unset;
text-decoration: unset;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
ul li {
margin-bottom: 10px;
background: var(--result-background-color);
box-shadow: 4px 4px 2px var(--shadow-color);
}
ul li a {
padding: 5px;
display: block;
}
em {
font-style: normal;
font-weight: bolder;
}
.flex-row {
width: 100%;
margin-bottom: 15px;
display: flex;
gap: 3px;
}
#search {
flex: auto;
min-width: 5em;
}
.flex-ini-box {
flex: initial;
}
#items {
width: 4em;
}
.description-title {
font-size: 120%;
font-family: "Merriweather Sans Bold";
}
.description-description {
font-family: "Merriweather", serif;
}
.count-info {
font-size: 85%;
margin-top: 10px;
margin-bottom: 22px;
color: var(--grey-font);
}
.path {
color: var(--grey-font);
font-size: 80%;
}
.page-button-group {
float: right;
font-size: 110%;
}
.page-button-group button {
font-size: larger;
border: 1px solid #AAA;
border-radius: 0;
}
.page-button-group button:not(:first-child) {
border-left: none;
}
.page-button-group:after {
/* clear: both; */
}