-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (97 loc) · 2.17 KB
/
Copy pathstyles.css
File metadata and controls
109 lines (97 loc) · 2.17 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
body {
width: 350px;
font-family: Arial, Helvetica, sans-serif;
background-color: #9ac6f3;
padding: 10px;
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #2c3e50;
font-size: 24px;
margin-bottom: 15px;
}
#searchInput {
width: 85%;
padding: 10px;
border: 1px solid #4dd0de;
border-radius: 10px;
margin-bottom: 15px;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
font-size: 14px;
}
#clearSearch {
width: 10%;
background-color: #ff4c4c;
border: none;
border-radius: 10px;
color: aliceblue;
cursor: pointer;
margin-left: 5px;
font-size: 16px;
transition: background-color 0.3s ease;
padding: 8px;
}
#tabList {
list-style-type: none;
padding: 0;
overflow-y: auto;
max-height: 500px;
}
#tabList li {
/* padding: 5%;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
border: 1px solid #ddd;
border-radius: 6px;
background-color: #fff;
margin-bottom: 0px; /* */
/*overflow: auto;
text-overflow: ellipsis;
white-space: nowrap; */
display: flex;
justify-content: space-between;
align-items: center;
background-color: #fff;
margin-bottom: 10px;
padding: 10px;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
transition: background-color 0.3s ease;
}
#tabList li span {
font-size: 14px;
color: #333;
max-width: 200px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
#tabList li:hover {
background-color: #bad6f0;
}
#tabList li button {
background-color: #ff4c4c;
color: white;
border: none;
padding: 5px 10px;
border-radius: 6px;
cursor: pointer;
}
#tabList li button:hover {
background-color: #993333;
}
/* Scrollbar for tab list */
#tabList::-webkit-scrollbar {
width: 8px;
}
#tabList::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 4px;
}
#tabList::-webkit-scrollbar-thumb:hover {
background-color: #555;
}