-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
113 lines (113 loc) · 2.45 KB
/
index.css
File metadata and controls
113 lines (113 loc) · 2.45 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
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
font-family:'Roboto', 'Helvetica Neue', 'Helvetica', 'Arial', sans-serif;
}
img {
vertical-align: bottom; /* solution for space under image */
}
label {
padding: 1px;
}
input[type="text"] {
height: 18px; /* chrome - firefox */
line-height: 18px; /* chrome - firefox */
}
select {
vertical-align: top;
height: 20px; /* chrome - firefox */
line-height: 20px; /* chrome - firefox */
border: 0; /* chrome - firefox */
padding: 0; /* chrome - firefox */
}
button {
background-color: gainsboro; /* chrome - firefox */
border-width: 1px; /* chrome - firefox */
padding: 1px 5px;
}
.task-formatted-textarea {
white-space: pre-wrap;
padding: 2px;
}
.task-textarea {
resize: none;
display: block; /* solution for space under textarea */
/* vertical-align: top; /* solution for space under textarea */
width: 100%;
border: none;
background-color: silver;
box-sizing: border-box;
overflow-y: hidden; /* hide scrollbar */
}
.task-compact-textarea {
white-space: pre-wrap;
padding: 2px;
flex: 1; /* take all the available space */
margin-right: 5px;
}
.task-top-row-input {
border: none;
vertical-align: top;
}
.task-help {
display: block;
padding: 2px 5px;
background-color: gainsboro;
margin-bottom: 5px;
}
.task-top-row-span {
vertical-align: top;
display: inline-block;
padding: 2px 5px;
background-color: gainsboro;
margin-bottom: 5px;
}
/*
.task-top-row-span-select {
vertical-align: top;
display: inline-block;
padding: 2px 5px 1px 5px;
background-color: gainsboro;
margin-bottom: 5px;
}
/**/
.task-top-row-button {
margin-bottom: 5px;
}
.top-menu-button {
border: none;
padding: 2px;
/* margin-bottom: 5px; */
}
.task {
display: inline-block;
vertical-align: top; /* solution for space under inline-block */
width: 100%;
margin-top: 10px;
padding: 5px;
background-color: silver;
box-sizing: border-box;
}
.task-compact {
display: flex;
margin-top: 10px;
padding: 5px;
background-color: silver;
}
.top-menu {
display: inline-block;
vertical-align: top; /* solution for space under inline-block */
width: 100%;
padding: 5px;
background-color: silver;
box-sizing: border-box;
}
.tasks-vue-app {
min-height: 100%;
padding: 0 10px;
background-color: #e8e8e8;
box-sizing: border-box;
}