-
Notifications
You must be signed in to change notification settings - Fork 86
/
index.css
61 lines (54 loc) · 903 Bytes
/
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
#app {
background-color: #ffffff;
border-radius: 6px;
border: 1px solid #e8e6e6;
padding: 15px;
position: relative;
margin-top: 10px;
}
#app :before {
content: " ";
width: 0;
height: 0;
border-left: 8px solid transparent;
border-right: 8px solid transparent;
border-bottom: 8px solid #e8e6e6;
position: absolute;
top: -8px;
left: calc(50% - 6px);
}
textarea {
padding: 10px;
font-size: 10px;
}
.rt {
padding: 5px 0;
}
.rt > label {
display: flex;
align-items: center;
user-select: none;
}
.rt strong {
font-size: 14px;
display: inline-block;
padding-right: 10px;
width: 100px;
text-align: right;
}
.ctl {
padding-top: 15px;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
}
.ctl button {
border: none;
background-color: transparent;
opacity: .4;
cursor: pointer;
}
.ctl button:hover {
opacity: .8;
}