forked from saintmarrow/nonbiblical-vocabulary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (73 loc) · 1.28 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
body {
background-color: #282a36;
color: #f8f8f2;
font-family: monospace;
font-size: 2vh;
position: relative;
display: inline-block;
}
h1 {
font-size: 6vh;
max-width: max-content;
display: inline-block;
}
h3 {
font-size: 4vh;
}
.form-buffer {
height: 10vh;
}
textarea {
background-color: #44475a;
color: #f8f8f2;
font-size: 2vh;
position: absolute;
left: 0;
right: 0;
height: 10vh;
}
input {
font-size: 2vh;
}
.highlight-notfound {
color: #ff5555;
}
.highlight-found {
color: #50fa7b;
}
#processed_block {
position: absolute;
left: 0;
right: 0;
}
.tooltip {
cursor: pointer;
display: inline-block;
position: relative;
font-size: 2vh;
}
.tooltiptext {
visibility: hidden;
background-color: #44475a;
border-color: #6272a4;
border-style: solid;
color: #f8f8f2;
text-align: center;
padding: 5px;
margin-top: 10px;
border-radius: 5px;
position: absolute;
z-index: 1;
top: 50%;
left: 125%;
transform: translateY(-50%);
opacity: 0;
transition: opacity 0.3s;
width:25vw;
font-size: 2vh;
}
/* Show the tooltip text when hovering on the span element */
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}