-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathView.css
More file actions
64 lines (56 loc) · 1.13 KB
/
View.css
File metadata and controls
64 lines (56 loc) · 1.13 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
main section {
position: absolute;
top: 0px;
right: 0px;
bottom: 0px;
left: 0px;
color: var(--main-color);
background: var(--main-background);
pointer-events: none;
transition: transform 250ms ease-out;
opacity: 0;
z-index: 0;
}
main section[data-state="active"] {
pointer-events: all;
transition: opacity 250ms ease-out;
opacity: 1;
z-index: 1;
}
main section,
main section[data-layout="flow"] {
display: block flow-root;
flex-direction: unset;
align-items: unset;
justify-content: unset;
}
main section[data-layout="flex"] {
display: block flex;
flex-direction: column;
align-items: center;
justify-content: start;
}
main section[data-layout="grid"] {
display: block grid;
flex-direction: unset;
align-items: unset;
justify-content: unset;
}
main article {
display: block;
position: static;
width: 66%;
margin: 32px auto;
padding: 0px 16px;
color: var(--article-color);
background: var(--article-background);
border: 1px solid var(--article-border);
border-radius: 8px;
}
main article *[data-message] {
font-family: 'vera-mono';
font-weight: normal;
font-style: normal;
font-size: 16px;
text-align: center;
}