-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (84 loc) · 1.8 KB
/
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
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
body {
font-family: Arial, sans-serif;
min-width: 500px;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: #f4f4f4;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
/* Add these styles to your styles.css file */
h1 {
text-align: center;
margin-top: 0px; /* Adjust the margin as needed */
}
h1 img{
height: 20px;
width: 20px;
margin-right: 10px;
}
.button-container{
text-align: center;
}
#save-tabs, #save-current-tab {
display: inline-block;
margin: 20px auto;
padding: 10px 20px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
ul {
list-style: none;
padding: 0;
}
li {
margin: 10px 0;
}
a {
text-decoration: none;
color: #333;
}
#save-current-tab:hover {
background-color: #0056b3;
}
#save-tabs:hover{
background-color: #0056b3;
}
/* ... Existing CSS styles ... */
.delete-icon {
margin-left: 10px;
cursor: pointer;
width: 12px; /* Adjust the width as needed */
height: 12px; /* Adjust the height as needed */
transition: color 0.3s; /* Transition for color change */
}
.delete-icon:hover {
width: 12px; /* Adjust the width for the hover state */
height: 12px; /* Adjust the height for the hover state */
cursor: pointer;
content: url('images/delete-hover.png'); /* Change image on hover */
color: red; /* Adjust the color for the hover state */
}
#delete-all{
position: fixed;
bottom: 20px;
right: 20px;
background-color: #007BFF;
color: white;
border: none;
font-size: 1em;
border-radius: 5px;
cursor: pointer;
padding: 5px 10px;
display: none;
transition: background-color 0.3s;
}
#delete-all:hover {
background-color: red;
}