-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblocked.css
More file actions
61 lines (53 loc) · 962 Bytes
/
blocked.css
File metadata and controls
61 lines (53 loc) · 962 Bytes
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
:root {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: linear-gradient(180deg, #f4f7ff 0%, #ecf2ff 100%);
color: #162542;
}
.card {
width: min(520px, calc(100vw - 32px));
background: #ffffff;
border: 1px solid #d7e0f7;
border-radius: 14px;
padding: 22px;
box-shadow: 0 10px 30px rgba(23, 47, 94, 0.12);
}
.eyebrow {
margin: 0;
font-size: 12px;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #4d6391;
}
h1 {
margin: 10px 0 8px;
}
.actions {
display: flex;
gap: 8px;
margin-top: 16px;
}
button {
border: 0;
border-radius: 8px;
padding: 10px 14px;
font-size: 14px;
cursor: pointer;
background: #1f5fff;
color: #fff;
}
button.ghost {
background: #e5ecff;
color: #1a2a4e;
}
button.link {
margin-top: 10px;
background: transparent;
color: #274687;
padding-left: 0;
}