-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkwic.css
More file actions
81 lines (81 loc) · 1.26 KB
/
kwic.css
File metadata and controls
81 lines (81 loc) · 1.26 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
html, body {
height: 100%;
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, sans-serif;
}
.header-box,.footer-box {
background-color: #f0f0f0; /* Light gray */
padding: 0.5rem;
padding-bottom: 0;
border-radius: 5px;
text-align: center;
}
.layout {
display: flex;
flex-direction: column;
margin: 0 auto;
width: 95vw;
padding: 10px;
}
.layout > *:last-child {
margin-bottom: 0;
}
.header-box, .footer-box,.controls,
#results {
margin-bottom: 5px;
}
.layout > * {
flex: 1;
}
.controls {
display: flex;
gap: 0.5rem;
align-items: center;
justify-content: flex-start;
margin-bottom: 1em;
}
.controls button {
flex: 0.25;
min-width: 0;
padding: 0.5rem 1rem;
font-size: 1rem;
}
.controls input[type="text"] {
flex: 2;
min-width: 0;
padding: 0.5rem;
font-size: 1rem;
}
.button-help {
color: red;
border: 1px solid red;
background-color: white;
}
.button-home {
color: white;
background-color: orange;
border: none;
}
.button {
cursor: pointer;
}
table {
border-collapse: collapse;
width: 100%;
margin-top: 1em;
}
th, td {
border: 1px solid #ccc;
padding: 6px 8px;
vertical-align: top;
}
.matchedToken1 {
color: red;
font-weight: bold;
}
.matchedToken2 {
color: blue;
font-weight: bold;
}