-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoptions.css
More file actions
114 lines (100 loc) · 2.75 KB
/
options.css
File metadata and controls
114 lines (100 loc) · 2.75 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
110
111
112
113
114
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f8f9fa; /* Light gray background */
}
h1 {
margin-bottom: 20px;
color: #e91717;
font-size: 40px; /* Larger font size */
}
h2 {
margin-bottom: 20px;
color: #007bff; /* Blue heading */
font-size: 24px; /* Larger font size */
}
label {
display: block;
margin-bottom: 5px;
color: #555; /* Dark gray label text */
font-size: 18px; /* Larger font size */
}
.green {
color: green;
}
.red {
color: red;
}
input[type="text"],
select {
width: calc(100% - 22px); /* Adjust for padding and border */
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc; /* Light gray border */
border-radius: 4px;
box-sizing: border-box;
background-color: #fff; /* White background */
color: #333; /* Dark text color */
font-size: 16px; /* Larger font size */
}
button {
padding: 10px 20px;
background-color: #007bff; /* Blue button */
color: #fff; /* White text */
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease; /* Smooth hover transition */
font-size: 16px; /* Larger font size */
}
#statusMessage {
margin-bottom: 10px;
font-style: italic;
font-size: 18px; /* Larger font size */
}
#savedLinks {
list-style-type: none; /* Remove bullet points */
padding: 0; /* Remove default padding */
font-size: 16px;
color: rgb(0, 119, 255);
}
#savedLinks li {
margin-bottom: 5px; /* Add some space between items */
padding: 10px; /* Add padding to each item */
background-color: #f0f0f0; /* Light gray background */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Change cursor to pointer on hover */
transition: background-color 0.3s ease; /* Smooth transition on hover */
}
#savedLinks li:hover {
background-color: #e0e0e0; /* Darker gray background on hover */
}
.delete-button {
padding: 5px 10px;
background-color: transparent; /* Red background */
color: white; /* White text color */
border: none; /* No border */
border-radius: 4px; /* Rounded corners */
cursor: pointer; /* Cursor on hover */
}
/* Style for the group list */
#group-list {
list-style-type: none; /* Remove bullet points */
padding: 0; /* Remove default padding */
font-size: 20px;
font-weight: bold;
}
/* Style for each group item */
#group-list li {
margin-bottom: 5px; /* Add some space between items */
padding: 10px; /* Add padding to each item */
background-color: #f0f0f0; /* Light gray background */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Change cursor to pointer on hover */
transition: background-color 0.3s ease; /* Smooth transition on hover */
}
/* Hover effect */
#group-list li:hover {
background-color: #e0e0e0; /* Darker gray background on hover */
}