-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathentreate.css
89 lines (79 loc) · 1.31 KB
/
entreate.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
:root {
--border: 1px solid #777;
--highlight-color: #ddd;
}
.entreate-button {
padding: .5em 1em;
margin: 5px;
border: 2px solid #555555;
border-radius: .25em;
color: #fff;
background-color: #555555;
text-decoration: none;
user-select: none;
cursor: pointer;
}
.entreate-button:hover {
color: #555555;
background-color: #fff;
border: 2px solid #555555;
}
.entreate-entry-editor__text {
border: var(--border);
}
.CodeMirror {
height: 400px;
}
.tag-editor {
padding: 10px;
border: var(--border);
}
.tag-list {
display: flex;
flex-wrap: wrap;
}
.tag-list__tag{
margin: 5px;
padding: 2px 5px;
border-radius: 5px;
background-color: #ccc;
}
.value-input {
padding: 10px;
border: var(--border);
}
.value-input__label {
margin: 0 5px;
}
.value-input__text {
padding: 5px;
width: 100%;
}
.margin-box {
margin: 5px 0;
}
.entry-list-item {
display: flex;
flex-direction: column;
padding: 5px;
border-bottom: 1px solid #000;
}
.entry-list-item:hover {
background-color: var(--highlight-color);
}
.entry-list__top-row {
display: flex;
justify-content: space-between;
}
.entry-list__bottom-row {
display: flex;
justify-content: space-between;
}
.option-input {
display: flex;
padding: 10px;
border: var(--border);
}
.option-input__label {
margin: 5px;
}