-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathadd.css
87 lines (85 loc) · 1.22 KB
/
add.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
.outlinestar,
.players > span {
cursor: pointer;
}
[contenteditable='true']:empty:before {
content: attr(placeholder);
pointer-events: none;
}
#options {
display: grid;
grid-template-columns: auto auto;
}
.cover {
background-color: gray;
}
.story,
tr > th:nth-child(1),
#percentage,
.count,
.time {
cursor: default;
}
#story,
#progress,
#total,
#hours,
#minutes {
cursor: text;
}
html {
height: 100%;
width: 100%;
}
body {
height: 100%;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
main {
display: flex;
width: fit-content;
height: fit-content;
padding: 30px;
border-radius: 15px;
gap: 30px;
border: 1px solid black;
position: relative;
}
input[type='checkbox'] {
width: fit-content;
}
#back {
display: flex;
justify-content: center;
align-items: center;
position: absolute;
top: 0;
left: -0.82em;
font-size: xx-large;
text-decoration: none;
color: black;
cursor: pointer;
}
#back > span {
font-size: medium;
}
#error {
position: absolute;
top: 0.6em;
left: 50%;
color: #ff4c4c;
}
.right {
position: absolute;
left: 100%;
padding-left: 10px;
width: max-content;
}
.left {
text-align: right;
padding-right: 10px;
width: auto;
}