-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.css
80 lines (67 loc) · 1.09 KB
/
page.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
body {
font-size: 1rem;
}
[method="dialog"] {
width: 50vw;
max-width: 768px;
padding: 16px;
}
[method="dialog"] input[type="url"],
[method="dialog"] textarea {
display: block;
margin-top: 16px;
width: 100%;
box-sizing: border-box;
padding: 8px;
font-size: 0.875rem;
-webkit-appearance: textfield;
resize: vertical;
color: #333;
}
[method="dialog"] input[type="checkbox"] {
font-size: 1rem;
}
[method="dialog"] menu {
padding-left: 0;
display: flex;
align-items: center;
justify-content: space-between;
}
#list {
padding-left: 0;
color: #333;
margin: 0;
}
#list li {
display: flex;
padding: 16px 0;
align-items: flex-start;
justify-content: space-between;
border-bottom: 1px dashed;
}
pre {
margin-bottom: 0;
}
main {
max-width: 768px;
margin: auto;
}
main h1 {
display: flex;
align-items: center;
justify-content: space-between;
border-bottom: 1px solid;
margin-bottom: 0;
padding-bottom: 8px;
}
dialog {
padding: 0;
}
details {
white-space: nowrap;
width: 80%;
}
summary {
text-overflow: ellipsis;
overflow: hidden;
}