-
Notifications
You must be signed in to change notification settings - Fork 0
/
estilo.css
107 lines (89 loc) · 2.15 KB
/
estilo.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
@keyframes gradient {
0% {
background-position: 1%, 50%;
}
50% {
background-position: 100%, 50%;
}
100% {
background-position: 0%, 50%;
}
}
body {
background:linear-gradient(45deg,#222831,#393e46,#00adb5,#eeeeee);
background-size: 200% 200%;
animation: gradient 8s ease infinite;
animation-iteration-count: infinite;
}
body div {
}
.container {
}
.formulario {
display: flex;
flex-direction: column;
align-self: center;
background-color: #DDDDDD;
margin: 10%;
border-radius: 15px;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
flex-wrap: wrap;
font-size: large;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin-bottom: 0px;
opacity: 10;
}
.formulario input {
flex-direction: Column;
margin: 20px;
padding: 10px;
align-items: center;
margin-bottom: 0px;
border-radius: 10px;
font-size: medium;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
opacity: 1;
}
botao{
width: 150px;
transition:ease;
box-shadow: 10px, 10px, 5px, #222831;
}
.botao:hover {
width: 200px;
}
.formulario p {
display: flex;
flex-direction: Column;
background-color: #DDDDDD;
margin-bottom: 0px;
padding: 20px;
flex-wrap: wrap;
font-size: large;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
opacity: 1;
}
p {
display:flex;
flex-direction: column;
flex-wrap: wrap;
align-items: center;
background-color: #DDDDDD;
font-size: larger;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
margin:0;
margin-top: -10px;
margin-left: 10%;
margin-right: 10%;
margin-bottom: 10%;
padding-bottom: 5%;
border-bottom-left-radius: 15px;
border-bottom-right-radius: 15px;
border-top-left-radius: -100px;
}
h1 {
display: flex;
flex-direction: column;
align-self: center;
}