-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
64 lines (53 loc) · 913 Bytes
/
index.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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: rgb(213, 198, 161);
padding: 10px;
min-width: 400px;
max-width: 600px;
}
input {
width: 100%;
box-sizing: border-box;
outline: none;
border: 1px solid rgb(15, 65, 37);
border-radius: 5px;
padding: 7px 5px;
}
h3 {
font-weight: bold;
color:rgb(15, 65, 37);
margin: 5px 0px;
}
h4 {
font-family: 'Courier New', Courier, monospace;
margin: 10px 0px 0px 0px;
}
ul {
margin: 0px;
padding-left: 10px;
list-style: none;
}
a {
text-decoration: none;
color: black;
}
p {
font-family:'Times New Roman', Times, serif;
margin: 7px 0px;
}
.shortdef {
margin: 5px 0px;
}
#err {
display: none;
}
#part-of-speech {
font-style: italic;
text-align: left;
margin: 0px;
}
#credits {
text-align: right;
font-size: 0.5em;
}