-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignupScreen.css
More file actions
45 lines (39 loc) · 803 Bytes
/
SignupScreen.css
File metadata and controls
45 lines (39 loc) · 803 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
.signupScreen{
max-width: 300px;
padding: 70px;
margin-left: auto;
margin-right: auto;
background: rgba(0, 0, 0, 0.85);
}
.signupScreen > form {
display: grid;
flex-direction: column;
}
.signupScreen > form > h1{
text-align: left;
margin-bottom: 25px;
}
.signupScreen > form > input {
outline-width: 0;
height: 40px;
margin-bottom: 14px;
border : none;
padding: 5px, 15px;
}
.signupScreen__gray{
color: gray;
}
.signupScreen > form > button{
padding: 16px 20px;
font-size: 1rem;
color: #fff;
border-radius: 5px;
background-color: #e50914;
font-weight: 600;
border: none;
cursor: pointer;
margin-top: 20px;
}
.signupScreen__link:hover{
cursor: pointer;
}