Skip to content

Commit 1f2fc42

Browse files
committed
Adds webpage for tracking progress
1 parent af7efee commit 1f2fc42

File tree

7 files changed

+23103
-0
lines changed

7 files changed

+23103
-0
lines changed
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
1+
2+
.fade-enter-active {
3+
transition: opacity 0.5s;
4+
}
5+
6+
.fade-leave-active {
7+
transition: opacity 0s;
8+
}
9+
10+
.fade-enter,
11+
.fade-leave-to {
12+
opacity: 0;
13+
height: 0;
14+
}
15+
16+
.expand-enter-active,
17+
.expand-leave-active {
18+
transition: all 0.5s;
19+
max-height: 1500px;
20+
}
21+
.expand-enter,
22+
.expand-leave-to
23+
{
24+
opacity: 0;
25+
max-height: 0;
26+
}
27+
28+
.chapter-card-block {
29+
}
30+
31+
.problem-card-block {
32+
33+
}
34+
35+
.problem-name {
36+
flex-grow: 1;
37+
font-size: medium;
38+
margin-right: 10px;
39+
}
40+
41+
.chapter-card-wide.mdl-card {
42+
width: 612px;
43+
margin: 20px auto auto;
44+
padding-left: 10px;
45+
padding-right: 10px;
46+
}
47+
48+
.chapter-card-wide > .mdl-card__title {
49+
color: #000000;
50+
height: 60px;
51+
}
52+
53+
.problem-card-wide > .mdl-card__title {
54+
color: #000000;
55+
height: 20px;
56+
}
57+
58+
.problem-card-wide.mdl-card {
59+
width: 592px;
60+
margin: 5px auto auto;
61+
position: relative;
62+
left: 10px;
63+
min-height: 95px;
64+
padding-left: 10px;
65+
}
66+
67+
.centered {
68+
margin: auto;
69+
display: block;
70+
}
71+
72+
.problem-card-content {
73+
display: flex;
74+
align-items: center;
75+
height: 70px;
76+
}
77+
78+
.epi_content {
79+
background-color: #efefef;
80+
font-family: "Roboto Light", sans-serif;
81+
padding-bottom: 40px;
82+
}
83+
84+
.chapter-plot {
85+
margin: 0 4px;
86+
display: inline-block;
87+
}
88+
89+
.chapter-plot p {
90+
text-align: center;
91+
margin: 0;
92+
}
93+
94+
.problem-plot {
95+
.chapter-plot;
96+
margin: 0 3px;
97+
}
98+
99+
.problem-plot p {
100+
text-align: center;
101+
font-size: 11px;
102+
line-height: 14px;
103+
margin: 0;
104+
}

0 commit comments

Comments
 (0)