-
Notifications
You must be signed in to change notification settings - Fork 312
Expand file tree
/
Copy pathstyles.css
More file actions
71 lines (60 loc) · 1013 Bytes
/
styles.css
File metadata and controls
71 lines (60 loc) · 1013 Bytes
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
body {
padding: 0;
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
/* TODO: Adjust CSS so that form is centered on page */
justify-content: center;
align-items: center;
/*outline: 2px dashed blue;*/
}
form {
display: flex;
justify-content: center;
flex-direction: column;
border: 1px solid black;
padding: 2rem;
border-radius: 2rem;
/*outline: 2px solid red;*/
}
.logo {
margin: 0 auto 10px auto;
max-width: 5%;
}
form>img {
margin: auto;
max-width: 100%;
}
.input-box {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
label {
text-align: center;
width: 100%;
padding: 1rem 0 0 0;
}
input {
width: 30%;
padding: 10px 20px;
border-radius: 5px;
outline: none;
}
button {
width: 20%;
margin: 1rem 0 0 0;
padding: 10px 20px;
border: none;
border-radius: 5px;
background-color: darkorange;
color: snow;
}
#success-message {
color: green;
}
#error-message {
color: red;
}