-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
67 lines (55 loc) · 1.08 KB
/
Copy pathstyle.css
File metadata and controls
67 lines (55 loc) · 1.08 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
body {
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
background: linear-gradient(45deg, #2af5da, blueviolet);
}
.pagina {
position: absolute;
margin: 0 auto;
left: 0;
right: 0;
}
input {
border: 1px solid #02dd5d;
border-radius: 8px;
padding: 5px;
}
.form {
background: white;
padding: 30px;
border-radius: 30px;
width: 70vw;
margin: 0 auto;
text-align: left;
box-shadow: 1px 1px 20px 1px #02ddae;
margin-bottom: 20vh;
}
#aqui, #mais, .calcular {
background-color: #02ddae;
color: white;
font-weight: bold;
border: none;
border-radius: 12px;
padding: 10px;
cursor: pointer;
transition: 300ms;
}
#aqui:hover, #mais:hover, .calcular:hover {
background-color: rgb(43, 101, 226);
}
/* ////////////// */
/* Animações */
/* ////////////// */
.animaInfo {
animation: surgir 1.2s linear;
}
@keyframes surgir {
0% {
opacity: 0%;
}
60% {
opacity: 40%;
}
100% {
opacity: 100%;
}
}