Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
U
UBC-Vancouver
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
2023 Competition
UBC-Vancouver
Commits
1bea8ea9
Commit
1bea8ea9
authored
1 year ago
by
Lucy Hao
Browse files
Options
Downloads
Patches
Plain Diff
fix padding
parent
592db4aa
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Pipeline
#310507
passed
1 year ago
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
components/description/PillarsFlex.js
+130
-0
130 additions, 0 deletions
components/description/PillarsFlex.js
pages/design.mdx
+2
-2
2 additions, 2 deletions
pages/design.mdx
pages/usermanual.mdx
+2
-2
2 additions, 2 deletions
pages/usermanual.mdx
with
134 additions
and
4 deletions
components/description/PillarsFlex.js
0 → 100644
+
130
−
0
View file @
1bea8ea9
import
styled
from
"
styled-components
"
;
import
AnimateImage
from
"
../AnimateImage
"
;
const
Pillar
=
styled
.
div
`
width: 15vw;
display: flex;
flex-direction: column;
text-align: center;
justify-content: space-between;
`
;
const
Image
=
styled
.
img
`
padding: 1%;
width: 12vw;
margin: auto;
@media only screen and (max-width: 768px) {
width: 80vw;
height: auto;
}
`
;
const
Black
=
styled
.
strong
`
background-color: #272727;
background-size: 100%;
background-repeat: repeat;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
-moz-background-clip: text;
-moz-text-fill-color: transparent;
text-align: center;
`
;
export
default
function
PillarsFlex
({
alternate
})
{
return
(
<>
{
/* desktop */
}
<
div
className
=
"
flex-col desktop-only
"
style
=
{{
justifyContent
:
"
space-between
"
,
textAlign
:
"
center
"
}}
>
<
div
className
=
"
flex-row
"
style
=
{{
justifyContent
:
"
space-between
"
}}
>
<
Pillar
>
<
AnimateImage
svgs
=
{[
"
1
"
,
"
2
"
,
"
3
"
,
"
4
"
,
"
5
"
,
"
6
"
]}
prefix
=
{
"
https://static.igem.wiki/teams/4796/wiki/animations/production/
"
}
/
>
<
/Pillar
>
<
Pillar
>
<
AnimateImage
svgs
=
{[
"
13
"
,
"
14
"
,
"
15
"
,
"
16
"
,
"
17
"
,
"
18
"
]}
prefix
=
{
"
https://static.igem.wiki/teams/4796/wiki/animations/energy/
"
}
/
>
<
/Pillar
>
<
Pillar
>
<
AnimateImage
svgs
=
{[
"
6
"
,
"
7
"
,
"
8
"
,
"
9
"
,
"
10
"
,
"
11
"
,
"
12
"
]}
prefix
=
{
"
https://static.igem.wiki/teams/4796/wiki/animations/purification/
"
}
/
>
<
/Pillar
>
<
/div
>
<
div
className
=
"
flex-row
"
style
=
{{
justifyContent
:
"
space-between
"
}}
>
<
Pillar
>
{
alternate
?
(
<
Black
>
<
p
>
Protein
Production
Efficiency
<
/p
>
<
/Black
>
)
:
(
<
White
>
<
p
>
Protein
Production
Efficiency
<
/p
>
<
/White
>
)}
<
/Pillar
>
<
Pillar
>
{
alternate
?
(
<
Black
>
<
p
>
Energy
Usage
<
br
/>
Efficiency
<
/p
>
<
/Black
>
)
:
(
<
White
>
<
p
>
Energy
Usage
<
br
/>
Efficiency
<
/p
>
<
/White
>
)}
<
/Pillar
>
<
Pillar
>
{
alternate
?
(
<
Black
>
<
p
>
Protein
Purification
Efficiency
<
/p
>
<
/Black
>
)
:
(
<
White
>
<
p
>
Protein
Purification
Efficiency
<
/p
>
<
/White
>
)}
<
/Pillar
>
<
/div
>
<
div
className
=
"
flex-row
"
style
=
{{
justifyContent
:
"
space-between
"
}}
>
<
Pillar
>
<
p
>
Employing
rapid
dividing
<
i
>
Vibrio
natriegens
<
/i> as a chassis fo
r
cell
free
protein
synthesis
.
<
/p
>
<
/Pillar
>
<
Pillar
>
<
p
>
Using
oxidative
phosphorylation
instead
of
substrate
level
through
split
inteins
.
<
/p
>
<
/Pillar
>
<
Pillar
>
<
p
>
Thiol
-
sensitive
intein
for
affinity
tag
purification
aid
.
<
/p
>
<
/Pillar
>
<
/div
>
<
/div
>
<
/
>
);
}
This diff is collapsed.
Click to expand it.
pages/design.mdx
+
2
−
2
View file @
1bea8ea9
import ContentLayout from "../components/ContentLayout.js";
import Figure from "../components/Figure.js";
import Pillars from "@/components/description/Pillars";
import Pillars
Flex
from "@/components/description/Pillars
Flex
";
export const meta = {
title: "Design",
...
...
@@ -56,7 +56,7 @@ a high efficiency protein production system that utilises cheap
substrates and allows for simultaneous protein biosynthesis, extraction
and purification.**
<Pillars alternate />
<Pillars
Flex
alternate />
Figure 1: The three pillars of protein production P.I.L.O.T seeks to tackle.
...
...
This diff is collapsed.
Click to expand it.
pages/usermanual.mdx
+
2
−
2
View file @
1bea8ea9
import ContentLayout from "../components/ContentLayout.js";
import Pillars from "@/components/description/Pillars";
import Pillars
Flex
from "@/components/description/Pillars
Flex
";
import Materialtable from "@/components/usermanual/Materialtable";
import Eppendorftable from "@/components/usermanual/Eppendorftable";
import Preparationtable from "@/components/usermanual/Preparationtable";
...
...
@@ -30,7 +30,7 @@ Cell-free Protein Synthesis is the scalable, _in-vitro_ production of recombinan
## Project Pillars
<Pillars alternate />
<Pillars
Flex
alternate />
### Strategic Energy Optimization through Methanol Integration
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment