-
Notifications
You must be signed in to change notification settings - Fork 0
/
cadastrar_pets.css
87 lines (74 loc) · 1.55 KB
/
cadastrar_pets.css
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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
font-family: 'Roboto', sans-serif;
background-color: #f2f2f2; /* cinza claro */
}
.container {
width: 375px;
padding: 0.5px;
background-color: #ffffff; /* branco */
display: flex;
flex-direction: column;
gap: 20px;
border-radius: 25px;
margin: 10px; /* margem cinza claro */
}
.header {
height: 44px;
background-color: #B61F43;
border-top-left-radius: 25px;
border-top-right-radius: 25px;
}
.main {
height:530px;
flex-direction: column;
gap: 20px;
}
#address
{
height: 50px;
}
.login-title {
font-size: 2rem;
color: rgb(8, 0, 0);
text-align:left !important;
margin-top: -20px;
font-family:Arial, Helvetica, sans-serif
}
.button {
padding: 10px 20px;
background-color: #B61F43;
color: #fff;
border: none;
cursor: pointer;
border-radius: 5px;
font-family: 'Roboto', sans-serif;
width: 167px;
height: 52px;
box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.4);
transition: all 0.3s ease 0s;
}
.button:hover {
background-color: #a11937;
box-shadow: 0px 0px 0px 167px 52px rgba(161, 25, 55, 0.6);
color: #fff;
transform: translateY(-7px);
}
.footer {
height: 100px;
background-color: #B61F43;
display: flex;
justify-content: space-around;
align-items: center;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px;
}
.footer .button {
width: 100px;
}