-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
89 lines (84 loc) · 1.58 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
body {
font-family: Helvetica, sans-serif;
background-color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
.texty,
.someText {
text-align: center;
color: darkblue;
margin: 3px;
border-radius: 3px;
border-color: aqua;
}
.autocomplete {
position: relative;
width: 500px;
}
input[type="text"] {
width: 100%;
padding: 10px;
font-size: 24px;
border: 1px solid black;
box-sizing: border-box;
margin-top: 20px;
}
.autocompleteList {
/* position: absolute; */
width: 100%;
border: 1px solid black;
background-color: #e0e0e0;
}
.autocompleteList div {
padding: 10px;
font-size: 18px;
border-bottom: 1px solid black;
cursor: pointer;
background-color: #e0e0e0;
}
.autocompleteList div:hover {
background-color: #137bd6;
}
.selected {
background-color: #a3d4ff;
}
.resultList {
margin-top: 20px;
padding: 0;
width: 500px;
}
.repository-list {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px;
border: 2px solid black;
background-color: #e26be2;
color: black;
margin-bottom: 0;
width: 500px;
height: auto;
}
.remove-btn {
background-color: transparent;
border: none;
font-size: 50px;
color: red;
cursor: pointer;
}
.remove-btn:hover {
color: black;
}
.style-container {
display: flex;
flex-direction: column;
align-items: center;
background-color: #bfbfbf;
margin: 25px;
padding: 50px;
}