Toggle navigation
Toggle navigation
This project
Loading...
Sign in
2020-1-capstone-design1
/
Triz_Project1
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
sdy
2020-07-16 16:33:32 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
832d7e2946ec9054eb129d9cbd9eb6efe2d512a8
832d7e29
1 parent
e3f5c0a3
create Main component
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
61 additions
and
0 deletions
front/src/Components/Main.js
front/src/Components/Main.js
0 → 100644
View file @
832d7e2
import
React
from
"react"
;
import
styled
from
"styled-components"
;
import
Laptop
from
"../Imgs/laptop.jpg"
;
const
Main
=
styled
.
main
`
display: flex;
flex-direction: column;
`
;
const
Section
=
styled
.
section
`
padding: 10rem 0;
max-width: none;
`
;
const
SectionBox
=
styled
.
div
`
display: grid;
grid-column-gap: 5%;
grid-template-columns: 40% 50%;
align-items: center;
margin: 0 auto;
`
;
const
DescriptionBox
=
styled
.
div
``
;
const
TitleBox
=
styled
.
div
``
;
const
IllustrationBox
=
styled
.
div
``
;
const
Image
=
styled
.
img
`
src: url(
${(
props
)
=>
props
.
src
}
);
alt:
${(
props
)
=>
props
.
alt
}
;
`
;
export
default
()
=>
{
return
(
<
Main
>
<
Section
>
<
SectionBox
>
<
DescriptionBox
>
<
TitleBox
>
Lorem
Ipsum
<
/TitleBox
>
<
p
>
What
is
Lorem
Ipsum
?
Lorem
Ipsum
is
simply
dummy
text
of
the
printing
and
typesetting
industry
.
Lorem
Ipsum
has
been
the
industry
'
s
standard
dummy
text
ever
since
the
1500
s
,
when
an
unknown
printer
took
a
galley
of
type
and
scrambled
it
to
make
a
type
specimen
book
.
It
has
survived
not
only
five
centuries
,
but
also
the
leap
into
electronic
typesetting
,
remaining
essentially
unchanged
.
It
was
popularised
in
the
1960
s
with
the
release
of
Letraset
sheets
containing
Lorem
Ipsum
passages
,
and
more
recently
with
desktop
publishing
software
like
Aldus
PageMaker
including
versions
of
Lorem
Ipsum
<
/p
>
<
/DescriptionBox
>
<
IllustrationBox
>
<
Image
src
=
{
Laptop
}
alt
=
{
"Back Image"
}
><
/Image
>
<
/IllustrationBox
>
<
/SectionBox
>
<
/Section
>
<
/Main
>
);
};
Please
register
or
login
to post a comment