-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·72 lines (59 loc) · 1.29 KB
/
style.css
File metadata and controls
executable file
·72 lines (59 loc) · 1.29 KB
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
html {
box-sizing: border-box;
background-size:cover;
min-height:100vh;
display:flex;
justify-content: center;
align-items: top;
text-align: center;
font-family: Futura,"Trebuchet MS",Arial,sans-serif
}
*, *:before, *:after {box-sizing: inherit; }
.wrapper {
width: 750px;
padding: 20px;
background: rgba(255,255,255,0.95);
box-shadow: 0 0 0 10px rgba(0,0,0,0.1);
}
h2 {
text-align: center;
margin: 0;
font-weight: 200;
}
.royaltyMember {
margin: 0;
padding: 0;
text-align: left;
list-style: none;
}
.royaltyMember li {
border-bottom: 1px solid rgba(0,0,0,0.2);
padding: 10px 0;
font-weight: 100;
display: flex;
}
.royaltyMember label {
flex:1;
cursor: pointer;
}
.royaltyMember input {
display: none;
}
.royaltyMember input + label:before {
content: '⬜️';
margin-right: 10px;
}
.royaltyMember input:checked + label:before {
content: url(Notes.png);
}
.add-items {
margin-top: 20px;
}
.add-items input {
padding:10px;
outline:0;
border:1px solid rgba(0,0,0,0.1);
}
.button {
background: darkgrey;
}