-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhra-vocabulary-editor.css
89 lines (75 loc) · 1.28 KB
/
hra-vocabulary-editor.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
82
83
84
85
86
87
88
89
body {
margin: 0;
padding: 0;
}
.record-group {
float: left;
width: 100%;
height: 300px;
}
.record-adding-group {
float: left;
width: 30%;
}
.suggestion-group {
float: left;
width: 30%;
margin-right: 10px;
overflow-y: scroll;
}
.suggestions-repeat {
font-size: 12px;
}
.history-group {
float: left;
width: 30%;
font-size: 12px;
}
.history-table {
border-collapse: collapse;
}
.history-table th, .history-table td {
border: 1px solid black;
}
.menubar ul {
list-style: none;
background-color: #444;
text-align: center;
padding: 0;
margin: 0;
}
.menubar li {
font-family: sans-serif;
font-size: 1.2em;
line-height: 40px;
height: 40px;
border-bottom: 1px solid #888;
}
.menubar a {
text-decoration: none;
color: #fff;
display: block;
transition: .3s background-color;
}
.menubar a:hover {
background-color: #005f5f;
}
.menubar a.active {
background-color: #fff;
color: #444;
cursor: default;
}
@media screen and (min-width: 600px) {
.menubar li {
width: 170px;
border-bottom: none;
height: 50px;
line-height: 50px;
font-size: 1.4em;
}
/* Option 1 - Display Inline */
.menubar li {
display: inline-block;
margin-right: -4px;
}
}