-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathStyledTelaPrincipal.js
More file actions
83 lines (70 loc) · 1.46 KB
/
StyledTelaPrincipal.js
File metadata and controls
83 lines (70 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import styled from "styled-components";
export const Body = styled.body`
height: 100vh;
width: 100vw;
background-color: aliceblue;
display: flex;
`;
export const LateralDireita = styled.div`
background-color: #444;
width: 70%;
`;
export const LateralEsquerda = styled.div`
width: 30%;
background-color: #d4d4d4;
display: flex;
flex-direction: column;
align-items: center;
`;
export const Titulo = styled.h1`
margin-top: 20%;
color: #444;
span{
color: grey;
}
`;
export const FotoUsuario = styled.div`
background-color: #e5e5e5;
height: 100px;
width: 100px;
border-radius: 50%;
margin-top: 10%;
background-image: url("https://eitrawmaterials.eu/wp-content/uploads/2016/09/person-icon.png");
background-size: cover;
`;
export const Divinputs = styled.div`
display: flex;
flex-direction: column;
align-items: center;
margin-top: 5%;
width: 50%;
height: 30%;
display: flex;
border-bottom: 1px solid #444;
`;
export const Input = styled.input`
height: 30px;
width: 100%;
margin-bottom: 5%;
padding-left: 5%;
border: none;
border-radius: 8px;
outline: 0;
:focus {
background-color: #f4f4f4 transparent;
border-radius: 8px 8px 0 0;
border-bottom: 1px solid #444;
}
`;
export const Button = styled.button`
margin-top: 5%;
padding: 4%;
width: 60%;
border-radius: 8px;
background-color: yellowgreen;
border: none;
:hover {
background-color: orangered;
cursor: pointer;
}
`;