-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.css
86 lines (73 loc) · 1.71 KB
/
options.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
/* options.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f7f7f7; /* Set the background color */
}
.title-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
h1 {
font-size: 24px;
margin: 0;
color: #333; /* Set the heading color */
position: relative;
left: 22px;
}
button {
font-size: 16px;
padding: 8px 12px;
background-color: #f44336; /* Set the button background color */
color: white; /* Set the button text color */
border: none;
border-radius: 4px;
cursor: pointer;
}
#history-list {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
#history-list li {
display: grid;
grid-template-columns: 1fr 1fr;
grid-gap: 10px;
border-bottom: 1px solid #ddd;
padding: 10px;
background-color: #fff; /* Set the table row background color */
}
#history-list li:last-child {
border-bottom: none;
}
#history-list .speech {
font-weight: bold;
color: #333; /* Set the speech text color */
}
#history-list .credibility {
text-align: right;
color: #777; /* Set the credibility text color */
}
#historyentered {
color: #999;
font-size: 18px;
}
#clearHistory {
background-color: #f44336;
color: white;
border: none;
padding: 8px 12px;
border-radius: 4px;
cursor: pointer;
position: relative;
left: -1000px;
}
#clearHistory:hover {
background-color: #d32f2f;
}