-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (108 loc) · 2.33 KB
/
style.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css2?family= Inter:wght@600 & display = swap');
* {
padding: 0;
margin: 0;
font-family: 'Inter', sans-serif;
}
body{
overflow: hidden;
}
section {
display: flex;
background-image: url("./img/1b209ec8-9578-4b7f-b94c-2c6360b32821.jpg");
background-repeat: no-repeat, repeat;
background-position: center center;
height: 35rem;
box-shadow: 1px 1px 1px #3e3e3e9a;
}
section .container{
display: flex;
flex-direction: column;
box-shadow: 2px 2px 2px #3e3e3e9a;
background-color: #3e3e3e9a;
font-family: 'Roboto', sans-serif;
color:#fbfbfbd3;
border-radius: 10px;
max-width: 400px;
max-height: 500px;
margin: 3em;
}
section .cadastro{
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
padding: 10px;
}
section .informacao{
display: flex;
text-align: center;
margin: 1em;
}
section h2{
display: flex;
text-align: center;
margin: 0,1em;
}
section input,button{
border-radius: 10px;
width: 70%;
height: 70%;
margin-top: 30px;
padding: 8px;
align-items: center;
border-style: none;
box-shadow: 2px 2px 2px #3e3e3ebb;
}
section input:hover{
transform: scale3d(1.05, 1.05, 1.05);
}
section button{
background-color: rgb(207, 93, 93);
color: white;
font-size: 15px;
cursor:pointer;
}
section button:hover{
filter: brightness(120%);
transform: scale3d(1.05, 1.05, 1.05);
}
footer{
font-size: 20px;
display: flex;
flex-direction: column;
align-items: center;
margin: 10px;
}
footer img:hover{
transform: scale3d(1.05, 1.05, 1.05);
}
.wpp{
display: flex;
justify-content: flex-end;
float: right;
margin-right: 3em;
padding: 5px;
animation-name: pulse;
animation-timing-function: ease-in-out;
animation-duration: 2s;
animation-fill-mode: both;
animation-iteration-count:infinite;
}
@keyframes pulse {
0% {
transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
filter: brightness(none);
}
50% {
transform: scale3d(1.05, 1.05, 1.05);
transform: scale3d(1.05, 1.05, 1.05);
filter: brightness(110%);
}
100% {
transform: scale3d(1, 1, 1);
transform: scale3d(1, 1, 1);
filter: brightness(none);
}
}