-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
103 lines (86 loc) · 1.06 KB
/
index.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
html, body
{
background-color: white;
}
html, body, input, button, a.account
{
color: black;
font-family: sans-serif;
font-size: 16px;
text-decoration: none;
}
form
{
border: 1px solid #ccc;
border-radius: 5px;
padding: 10px;
}
input
{
width: 400px;
}
p:first-child
{
margin-top: 0;
}
p:last-child
{
margin-bottom: 0;
}
#progress
{
display: flex;
flex-direction: row;
align-items: center;
}
#progress.done:not(.error)
{
display: none;
}
#progress.error
{
color: red;
}
#progress.error > #in-progress
{
display: none;
}
#progress:not(.error) > #error
{
display: none;
}
#progress-label
{
margin-inline-start: 1em;
}
.account
{
display: flex;
flex-direction: row;
align-items: center;
padding: 0.5em 0;
}
.account:not(:first-child)
{
border-top: 1px solid #ccc;
}
.account > .avatar
{
max-width: 46px;
max-height: 46px;
border-radius: 4px;
margin-inline-end: 1em;
}
.account > .name-container
{
display: flex;
flex-direction: column;
}
.account .name
{
font-weight: bold;
}
.account .note
{
font-size: 80%;
}