-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathLexiconStyle.css
More file actions
129 lines (129 loc) · 2.42 KB
/
LexiconStyle.css
File metadata and controls
129 lines (129 loc) · 2.42 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body
{
background: rgb(72, 36, 0) url(../Images/mark-rasmuson-yri82tuk2TQ-unsplash.jpg);
font-family: "Gentium Plus", "SBL Greek", "Palatino Linotype", Palatino, serif;
margin: 0;
background-size: cover;
}
header
{
background-color: rgba(252, 216, 180, 0.8);
border-bottom: 1px solid rgb(72, 36, 0);
}
h1
{
padding: 0 0 0.25em 0.5em;
margin: 0;
color: rgb(72, 36, 0);
}
nav
{
background-color: rgba(108, 72, 36, 0.8);
color: rgb(252, 216, 180);
padding: 0 0 2px 0.5em;
border-bottom: 1px solid rgb(72, 36, 0);
box-shadow: 5px 5px 5px rgba(72, 36, 0, 0.8);
}
nav input#index
{
text-align: left;
font-family: "Gentium Plus", "SBL Greek", "Palatino Linotype", serif;
}
nav span#link a
{
color: rgb(252, 216, 180);
margin-left: 0.5em;
}
nav button
{
background-color: #77250f;
background-image: -moz-linear-gradient(top, #77250f, #dd6d5b);
background-image: -webkit-linear-gradient(top, #77250f, #dd6d5b);
color: rgb(252, 216, 180);
border-radius: 4px;
}
nav button:hover
{
background: #dd6d5b;
color: rgb(252, 252, 216);
}
section
{
background-color: rgba(252, 252, 252, 0.9);
margin: 1em 1em 1em 15em;
padding: 0.5em 1em;
border: 1px solid rgb(72, 36, 0);
border-radius: 1em;
max-width: 32em;
box-shadow: 5px 5px 5px rgba(72, 36, 0, 0.8);
font-size: larger;
}
section#entry
{
max-height: 490px;
overflow: auto;
}
section#entry ul.sub
{
font-size: smaller;
}
aside.keys
{
position: absolute;
top: 400px;
left: 1em;
}
/* Entry styles. */
span.lemma
{
font-weight: bold;
}
span.pos, span.strong
{
font-size: smaller;
}
span.xlit, span.def
{
font-style: italic;
}
/* Popup styles. */
div#popup
{
position: absolute;
background-color: rgb(252, 252, 252);
padding: 2px 4px;
border-radius: 4px;
border: 1px solid rgb(252, 216, 180);
box-shadow: 2px 2px 2px rgba(72, 36, 0, 0.5);
display: none;
max-width: 16em;
}
/* LookAhead styles. */
div#lookAhead
{
position: absolute;
display: none;
background-color: rgba(252, 252, 252, 0.9);
box-shadow: 4px 4px 2px rgba(64, 64, 64, 0.5);
max-width: 16em;
}
div#lookAhead ul
{
margin: 0;
padding: 0;
list-style: none;
max-height: 300px;
overflow: auto;
}
div#lookAhead li
{
padding: 0 0.5em;
border-top: 1px solid white;
border-bottom: 1px solid rgb(255, 238, 187);
}
div#lookAhead li:hover
{
background-color: rgb(231, 195, 159);
border-bottom: 1px solid rgb(187, 138, 101);
cursor: pointer;
}