Skip to content

Commit 58d73be

Browse files
committed
Initial migration
1 parent 9bb60be commit 58d73be

20 files changed

+1586
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.idea

index.css

Lines changed: 116 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
body {
2+
font-family: sans-serif;
3+
padding: 3em;
4+
display: flex;
5+
flex-direction: column;
6+
align-items: center;
7+
}
8+
9+
h1, h2, h3 {
10+
text-align: center;
11+
}
12+
13+
.bodycontainer {
14+
width: 50%;
15+
display: flex;
16+
flex-direction: column;
17+
align-items: stretch;
18+
gap: 1em;
19+
}
20+
21+
.container {
22+
padding: 2em;
23+
border: 1px solid black;
24+
display: flex;
25+
flex-direction: column;
26+
gap: 1em;
27+
}
28+
29+
.warnings {
30+
color: #c00;
31+
font-weight: bold;
32+
width: 100%;
33+
display: flex;
34+
flex-direction: column;
35+
align-items: start;
36+
}
37+
38+
.warnings > a {
39+
color: #000;
40+
font-weight: normal;
41+
text-decoration: underline;
42+
align-self: center;
43+
}
44+
45+
.flexrow {
46+
display: flex;
47+
flex-direction: row;
48+
align-items: center;
49+
}
50+
51+
.spacebetween {
52+
justify-content: space-between;
53+
}
54+
55+
.alignitemscenter {
56+
align-items: center;
57+
}
58+
59+
.grid {
60+
display: grid;
61+
grid-template-columns: max-content max-content max-content;
62+
grid-column-gap: 1em;
63+
grid-row-gap: 0.5em;
64+
align-items: center;
65+
}
66+
67+
.grid h3 {
68+
grid-column: span 3;
69+
}
70+
71+
#previewcontainer {
72+
margin: 0 -25vw;
73+
overflow-x: scroll;
74+
}
75+
76+
#preview {
77+
padding: 0 25vw;
78+
}
79+
80+
#generatechart {
81+
font-size: 1.5em;
82+
font-weight: bold;
83+
padding: 1em;
84+
}
85+
86+
#slidemodes {
87+
gap: 0;
88+
}
89+
90+
#slidemodes img {
91+
align-self: center;
92+
}
93+
94+
ol, ul {
95+
margin: 0;
96+
}
97+
98+
p {
99+
margin-bottom: 0;
100+
}
101+
102+
abbr {
103+
width: 11px;
104+
height: 11px;
105+
106+
border: 1px solid gray;
107+
border-radius: 999px;
108+
109+
font-weight: bold;
110+
font-size: 10px;
111+
line-height: 11px;
112+
color: gray;
113+
text-align: center;
114+
text-decoration: none;
115+
user-select: none;
116+
}

0 commit comments

Comments
 (0)