-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyleC.css
More file actions
105 lines (90 loc) · 1.54 KB
/
Copy pathstyleC.css
File metadata and controls
105 lines (90 loc) · 1.54 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
* {
padding: 0;
border: 0;
box-sizing: border-box;
}
html {
width: 100vw;
height: 100vh;
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(#fff, #a9a8a8);
background-repeat: no-repeat;
overflow: hidden;
}
header{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background-color: #12b304;
border-radius: 0px 0px 10px 10px;
height: 65px;
margin-bottom: 200px;
}
a {
color: white;
font-size: 30px;
text-decoration: none;
padding-left: 20px;
}
#ir{
color: white;
font-size: 30px;
padding-right: 20px;
text-decoration: none;
}
#Local_Cadastro{
display: flex;
align-items: center;
justify-content: center;
}
header h1{
text-align: center;
color: white;
}
#Cadastro {
display: grid;
}
.camposV{
margin-top: 10px;
padding-left: 20px;
}
.camposV input{
width: 300px;
height: 30px;
border-radius: 5px;
}
.inform{
display: grid;
padding-left: 20px;
}
.label{
margin-top: 5px;
}
.imput{
width: 300px;
height: 30px;
border-radius: 5px;
margin-bottom: 5px;
}
.botao{
margin-top: 10px;
width: 300px;
height: 30px;
color: white;
background-color: #13b304bb;
border-radius: 5px;
}
.botao:hover {
cursor: pointer;
background-color: #13b304;
}
.pe{
width: 99vw;
height: 65px;
background-color: #12b304;
border-radius: 10px 10px;
height: 65px;
position: absolute;
bottom: 0;
}