-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
56 lines (47 loc) · 841 Bytes
/
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
body {
background-image: url(backgroundtest.jpg);
display: flex;
justify-content: space-around;
align-items: center;
min-height: 100vh;
color: #fff;
}
.container {
min-width: 400px;
min-height: 400px;
background-color: #1d1e33;
padding: 2rem;
}
#f-cont h1 {
text-align: center;
margin-bottom: 2em;
}
.f-input {
display: flex;
flex-direction: column;
}
.form-green {
border-color: green;
}
.form-red {
border-color: red;
}
.form-control {
display: flex;
flex-direction: column;
margin-bottom: 1rem;
}
button {
justify-items: center;
text-transform: uppercase;
border: black;
color: azure;
cursor: pointer;
background-color: cornflowerblue;
padding: 1rem 1.5rem;
flex: 1;
opacity: 0.8;
}
button:hover {
opacity: 1.2;
}