-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
89 lines (76 loc) · 982 Bytes
/
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
:root {
font-size: 16px;
background: #ffffff;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
img,
picture,
svg,
video {
display: block;
}
* {
margin: 0;
padding: 0;
font: inherited;
}
body {
background-color: #fff0df;
min-height: 100svh;
width: 100%;
}
.background {
position: absolute;
inset: 0;
z-index: 0;
}
.backgroundImage {
width: 100%;
height: 100svh;
object-fit: cover;
z-index: 0;
}
.container {
min-height: 100svh;
width: 100%;
display: grid;
place-content: center;
z-index: 5;
}
.container * {
z-index: 5;
}
input {
min-width: 250px;
}
.buttonWrap {
margin: 1rem 0;
}
ul {
/* margin: 1rem; */
}
li {
position: relative;
margin: 1rem auto;
list-style-type: lower-roman;
width: 90%;
}
.title {
position: absolute;
left: 0;
width: fit-content;
}
li > button {
float: right;
margin: 0 0.1rem;
/* right: 0; */
/* font-size: 10; */
}
li > span {
position: absolute;
right: 50%;
}