-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
62 lines (52 loc) · 714 Bytes
/
main.css
File metadata and controls
62 lines (52 loc) · 714 Bytes
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
body {
padding: 20px 0;
margin: 0;
}
* {
box-sizing: border-box;
}
.main-container {
margin: auto;
display: flex;
width: 80%;
justify-content: center;
}
.form-group {
width: 240px;
}
ul {
list-style-type: none;
padding: 0;
margin: 0;
}
.results {
border: 1px solid #ccc;
border-top: 0;
width: 100%;
max-height: 200px;
overflow-y: scroll;
}
.result {
padding: 5px;
cursor: pointer;
}
.result:hover {
background-color: #eee;
}
.item__selected {
background-color: #eee;
}
form {
display: flex;
}
.form-group + .form-group {
margin-left: 50px;
}
input {
display: block;
width: 100%;
padding: 5px;
border: 1px solid #ccc;
height: 30px;
outline: none;
}