-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (69 loc) · 1.55 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (69 loc) · 1.55 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
73
74
75
:root {
--bg-color: #e4d9ff;
--font-color: #000000;
--card-border: #b5b0da;
}
@media (prefers-color-scheme: dark) {
:root {
--bg-color: #262a32;
--font-color: #fafaff;
--card-border: #273469;
}
}
* {
color: var(--font-color) !important;
margin: 0;
padding: 0;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
html,
body {
width: 100%;
background-color: var(--bg-color);
}
.container {
height: auto;
max-width: 1024px;
width: 100%;
margin: 0 auto;
text-align: center;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-ms-flex-line-pack: center;
align-content: center;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
}
.container .card {
margin: 32px;
padding: 12px;
width: 30vh;
border: 4px solid var(--card-border);
background-color: #8687b4;
border-radius: 12px;
}
.container .card .wrapper {
color: var(--bg-color);
text-decoration: none;
font-size: 2.4vh;
}
.container .card hr {
display: block;
height: 0px;
border: 0;
margin: 5% 5%;
padding: 0;
border-top: 2px solid var(--card-border);
border-bottom: 2px solid var(--card-border);
border-radius: 9999px;
}
/*# sourceMappingURL=style.css.map */