-
Notifications
You must be signed in to change notification settings - Fork 682
Expand file tree
/
Copy pathLogin.css
More file actions
72 lines (64 loc) · 1.2 KB
/
Login.css
File metadata and controls
72 lines (64 loc) · 1.2 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
.login {
background-color: white;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
}
.login__logo {
margin-top: 20px;
margin-bottom: 20px;
object-fit: contain;
width: 100px;
margin-right: auto;
margin-left: auto;
}
.login__container {
width: 300px;
height: fit-content;
display: flex;
flex-direction: column;
border-radius: 5px;
border: 1px solid lightgray;
padding: 20px;
}
.login__container > h1 {
font-weight: 500;
margin-bottom: 20px;
}
.login__container > form > h5 {
margin-bottom: 5px;
}
.login__container > form > input {
height: 30px;
margin-bottom: 10px;
background-color: white;
width: 98%;
}
.login__container > p {
margin-top: 15px;
font-size: 12px;
}
.login__signInButton {
background: #f0c14b;
border-radius: 2px;
width: 100%;
height: 30px;
border: 1px solid;
margin-top: 10px;
border-color: #a88734 #9c7e31 #846a29;
}
.login__newUser > p {
font-size: 12px;
text-align: center;
}
.login__registerButton {
border-radius: 2px;
width: 100%;
height: 30px;
border: 1px solid;
margin-top: 10px;
background-image: linear-gradient(white, #e6e6e6, #e6e6e6);
border-color: lightgray;
font-weight: 600;
}