-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
53 lines (46 loc) · 896 Bytes
/
index.css
File metadata and controls
53 lines (46 loc) · 896 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
body {
background-color: #1e1e2f;
color: #e4e4e4;
font-family: sans-serif;
}
main {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
}
.form {
display: flex;
flex-direction: column;
width: 25%;
border-radius: 10px;
padding: 20px;
background-color: #2c2c3a;
box-shadow: 0 4px 8px #00000033;
}
.form input {
border: none;
border-radius: 8px;
margin: 10px 0;
padding: 13px;
background-color: #39394a;
font-size: 14px;
color: #dcdcdc;
}
.form input:focus {
outline: solid 1px #a3c4bc;
}
.form :nth-last-child(1) {
border: none;
border-radius: 8px;
margin: 12px 0;
padding: 13px;
background-color: #a3c4bc;
color: #2c2c3a;
font-size: 16px;
cursor: pointer;
font-weight: bold;
}
.form :nth-last-child(1):hover {
background-color: #8caea6;
}