Skip to content

Commit 082c1dc

Browse files
authored
Merge pull request #75 from 740fernando/feature/react
Styling Registration book screen
2 parents 2de7df9 + 9c42498 commit 082c1dc

File tree

1 file changed

+59
-0
lines changed
  • 09 - Consumindo a API com React/client/src/pages/NewBook

1 file changed

+59
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
.new-book-container {
2+
width: 100%;
3+
max-width: 1120px;
4+
height: 100vh;
5+
margin: 0 auto;
6+
7+
display: flex;
8+
align-items: center;
9+
justify-content: space-between;
10+
}
11+
12+
.new-book-container .content {
13+
width: 100%;
14+
padding: 96px;
15+
background: #F0F0F5;
16+
box-shadow: 0 0 100px rga(0,0,0,0.1);
17+
border-radius: 8px;
18+
19+
display: flex;
20+
justify-content: space-between;
21+
align-items: center;
22+
}
23+
24+
.new-book-container .content section{
25+
width: 100%;
26+
max-width: 380px;
27+
}
28+
29+
.new-book-container section.form{
30+
width: 100%;
31+
max-width: 350px;
32+
margin-right: 30px;
33+
}
34+
35+
.new-book-container section.form img{
36+
width: 45%;
37+
margin-right: auto;
38+
margin-right: auto;
39+
display: block;
40+
}
41+
42+
.new-book-container .content section h1{
43+
margin: 64px 0 32px;
44+
font-size: 32px;
45+
}
46+
47+
.new-book-container .content section p{
48+
font-size: 18px;
49+
color: #737380;
50+
}
51+
52+
.new-book-container .content form{
53+
width: 100%;
54+
max-width: 450px;
55+
}
56+
57+
.new-book-container .content form input{
58+
margin-top: 8px;
59+
}

0 commit comments

Comments
 (0)