-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (74 loc) · 1.38 KB
/
style.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
body {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
line-height: 1;
vertical-align: baseline;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
hr {
margin: 0;
color: #DDD;
}
.container {
margin: 0 auto;
width: 80%;
max-width: 1280px;
}
.selected {
background-color: antiquewhite;
}
.search {
position: relative;
margin: 0 auto ;
}
.search__icon {
position: absolute;
left: 30%;
top: 8px;
}
.search__input {
display: flex;
margin: auto;
padding: 10px;
width: 40%;
margin-top: 10%;
outline: none;
box-shadow: none;
text-indent: 25px;
}
#itemsHolder {
position: relative;
margin: 0 auto;
width: 42%;
max-height: 325px;
overflow-y: auto;
border: 1px solid #DDD;
border-top-width: 0;
box-shadow: 0 0px 5px rgba(0, 0, 0, .35);
}
.itemsHolder__item {
cursor: pointer;
}
.itemsHolder__item p {
margin: 0 0 5px 5px;
padding-top: 5px;
}
.itemsHolder__noData {
display: flex;
justify-content: center;
height: 30px;
vertical-align: middle;
align-content: baseline;
margin-top: 10px;
}
.itemsHolder__item p:first-child {
font-weight: bold;
}
.itemsHolder__item p:nth-child(2) {
font-style: italic;
}
.itemsHolder__item p:nth-child(3) {
opacity: 0.6;
}