-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (65 loc) · 966 Bytes
/
style.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
body {
font-size: 20px;
}
.header {
width: 50%;
margin: 40px auto 0px;
color: white;
background: #483DBB;
text-align: center;
border: 1px, solid, gray;
border-radius: 8px 8px 0px 0px;
padding: 5px 1px 5px 1px;
}
.wrapper {
width: 50%;
margin: 0px auto;
border: 1px solid gray;
}
.wrapper:after {
content: "";
display: block;
clear: both;
}
.words {
width: 29%;
background: #dcdcdc;
padding-top: 10px;
float: left;
}
.word {
width: 69%;
float: left;
padding-left: 10px;
}
#word_list {
max-height: 400px;
overflow-y: scroll;
}
li {
list-style-type: none;
line-height: 1.4em;
}
li:hover {
cursor: pointer;
color: #483DBB;
}
ul {
margin-left: -10px;
}
h3 {
color: #483DBB;
}
#search {
margin-left: 10px;
width: 60%;
padding: 5px;
height: 13px;
}
button {
height: 27px;
background: #483DBB;
color: white;
border: none;
border-radius: 4px;
}