-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
105 lines (105 loc) · 1.49 KB
/
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
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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
html,
body {
font: 14px/1.21 system-ui, sans-serif;
}
.Header {
align-items: center;
border-bottom: 1px solid #f1f2f3;
display: flex;
justify-content: space-between;
padding: 0.75rem 1.5rem;
}
.Header-text {
font-weight: normal;
}
main {
display: flex;
}
h1,
h2,
h3,
h4 {
margin-bottom: 0.25em;
}
ul {
list-style: none;
padding: 0;
}
li {
padding: 0.15rem 0;
}
label {
cursor: pointer;
}
a {
display: inline-block;
width: 5.5ch;
}
.App-input,
.App-output {
padding: 1rem 1.5rem;
width: 50%;
max-width: 50%;
}
.AttendeeList {
margin-bottom: 1rem;
}
.Attendee {
display: inline-block;
}
.Attendee + .Attendee {
margin-left: 0.75rem;
}
.Attendee-checkbox {
margin-right: 0.25rem;
}
.Filter {
align-items: center;
display: flex;
margin-bottom: 0.5rem;
}
.Filter-label {
margin-right: 0.35rem;
}
.Filter-input {
flex: 1;
font: inherit;
padding: 0.25rem 0.15rem;
}
.IssueListHeader {
align-items: center;
display: flex;
justify-content: space-between;
}
.Issue {
background-color: #f1f2f3;
border-radius: 3px;
padding: 0.5rem 0.25rem;
}
.Issue + .Issue {
margin-top: 0.5rem;
}
.Issue-label {
display: block;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.Issue-checkbox {
margin-right: 0.5rem;
}
.Issue-notes {
height: 5rem;
margin: 0.5rem 0 0 1.5rem;
width: calc(100% - 1.75rem);
}
.Minutes {
overflow: auto;
white-space: pre-wrap;
word-break: break-all;
}