-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
52 lines (46 loc) · 962 Bytes
/
styles.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
/* Стили для кнопки */
.list-action-button {
background: none;
position: absolute;
color: orange;
border: none;
padding: 0 5px;
font-size: 30px;
border-radius: 5px;
line-height: 1;
/*left: 20px;*/
/*top: -10px;*/
cursor: pointer;
z-index: 1;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.list-action-button:hover {
background-color: #2980b9;
}
/* Стили для элементов списка в модалке */
ul {
list-style: none;
padding: 0;
}
li {
padding: 5px;
border-radius: 4px;
cursor: pointer;
}
/* Подсветка при наведении */
li:hover {
background-color: #e0e0e0;
}
/* Стили для выбранного элемента */
li.selected {
background-color: #a8d0e6;
font-weight: bold;
}
/* Поле ввода для поиска */
input[type="text"] {
margin-bottom: 10px;
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
}