-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
110 lines (94 loc) · 1.89 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
100
101
102
103
104
105
106
107
108
109
110
body {
font-family: Arial, sans-serif;
background-color: #121212;
color: #ffffff;
margin: 0;
padding: 0;
}
.container {
display: flex;
justify-content: space-between;
overflow-x: hidden;
height: 100vh;
}
.column {
background-color: #1f1f1f;
border: 1px solid #333;
border-radius: 8px;
padding: 20px;
flex: 1;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
overflow-y: auto;
margin: 10px;
}
.column h2 {
margin-top: 0;
}
textarea {
width: 100%;
height: 90%;
padding: 10px;
border: none;
border-radius: 5px;
resize: none;
background-color: #333;
color: #ffffff;
}
h2 {
margin-top: 0;
font-size: 1.5em;
color: #007bff;
}
#match-metric {
font-size: 1.2em;
margin-bottom: 15px;
text-align: center;
color: #ffffff;
position: sticky;
top: 0;
}
ul {
list-style: none;
padding: 0;
}
li {
padding: 10px 0;
border-bottom: 1px solid #333;
font-size: 1.1em;
}
button {
padding: 10px 20px;
font-size: 1em;
background-color: #007bff;
color: #ffffff;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
#buttons {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
.delete-button {
background-color: #f00;
color: #fff;
border: none;
border-radius: 50%;
cursor: pointer;
padding: 5px 10px;
margin-left: 10px;
transition: background-color 0.3s;
}
.delete-button:hover {
background-color: #ff4444;
}
.highlighted {
background-color: yellow; /* Highlight color */
font-weight: bold; /* Bold text for highlighted keywords */
color: black; /* Text color for highlighted keywords */
}