-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
92 lines (79 loc) · 1.3 KB
/
index.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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
margin: auto;
max-width: 38rem;
padding: 2rem;
background-color: black;
}
.main {
margin: auto auto;
margin-top: 5rem;
vertical-align: middle;
text-align: center;
width: 100%;
height: 100%;
}
form {
margin: auto auto;
display: flex;
flex-direction: column;
align-items: stretch;
text-align: center;
}
.row {
margin: 1rem auto;
}
h2 {
color: white;
font-size: 2rem;
}
input {
background-color: white;
border: 2px solid white;
border-radius: 10px;
}
input {
width: 50%;
height: 3rem;
}
input::placeholder {
text-align: center;
font-size: 1.5rem;
}
input[type="text"] {
align-items: center;
text-align: center;
font-size: 1.5rem;
padding-left: 5px;
padding-top: 5px;
cursor: text;
border: 1.5px solid white;
border-top: 0 none;
border-left: 0 none;
border-right: 0 none;
}
input:focus,
select:focus {
outline: none;
}
.btn2 {
height: 4rem;
width: 12rem;
color: black;
background-color: grey;
font-size: 2rem;
font-weight: bold;
box-sizing: border-box;
border-radius: 5px;
cursor: pointer;
}
#success, #failure, #error {
display: none;
font-size: 1.5rem;
}
#success {
color: green;
}
#failure, #error {
color: red;
}