-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpermission.css
53 lines (47 loc) · 889 Bytes
/
permission.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
body {
margin: 0;
font-size: 16px;
color: #2c2c2c;
background-color: #f5f5f5;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
}
p {
text-align: center;
margin: 0;
}
ul {
margin: 1.5rem 0;
}
button {
display: inline-flex;
align-items: center;
justify-content: center;
width: 100%;
height: 2.5rem;
padding: 0.5rem 1rem;
border-width: 0;
border-radius: 0.25rem;
font-weight: bold;
color: #fafafa;
background-color: #18181b;
white-space: nowrap;
cursor: pointer;
}
button:hover {
background-color: #18181be6;
}
.container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.box {
width: 100%;
max-width: 28rem;
padding: 2rem;
border-radius: 0.5rem;
background-color: white;
}