-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
58 lines (58 loc) · 1.02 KB
/
Copy pathstyles.css
File metadata and controls
58 lines (58 loc) · 1.02 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
body {
background-color: #f2f4f7;
font-family: Helvetica, Arial, sans-serif;
margin: 0px;
height: 100vh;
display: flex;
justify-content: center;
padding-top: 40px;
}
section{
align-items: center;
}
input {
display: flex;
width: 330px;
height: 22px;
padding: 14px 16px;
margin-bottom: 10px;
font-family: inherit;
font-size: 17px;
line-height: 16px;
border: 3px solid #000000;
border-radius: 100px;
color: #1d2129;
}
#feedback {
margin-top: 20px;
font-size: 16px;
text-align: center;
}
.rojo {
color: red;
}
.naranja {
color: orange;
}
.verde {
color: green;
}
#btnLogin {
align-items: center;
width: 370px;
height: 50px;
padding: 14px;
margin-bottom: 10px;
font-family: inherit;
font-size: 17px;
line-height: 16px;
border: 3px solid #000000;
border-radius: 100px;
color: #1d2129;
background-color: blue;
color: aliceblue;
}
#btnLogin:disabled {
background-color: darkgray;
color:black
}