-
Notifications
You must be signed in to change notification settings - Fork 0
/
style1.css
60 lines (52 loc) · 1.07 KB
/
style1.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
body{
background-image: url(1.jpg);
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.signupbox{
width: 300px;
height: 380px;
background: #1c2833;
color: white;
margin: 70px auto;
padding: 70px 30px;
border-radius: 10px;
}
.logo{
width: 100px;
height:100px;
position: absolute;
top: 20px;
left: calc(50% - 50px);
}
h1{
text-align: center;
padding-bottom:20px;
margin-top: 0;
}
label{
font-size:18px;
display:block;
}
input{
width: 100%;
margin-bottom: 20px;
}
input[type="text"],input[type="password"]{
border: none;
background: transparent;
border-bottom: 1px solid #fff;
height: 40px;
outline: none;
color: white;
font-size: 16px;
}
input[type="submit"]{
border: none;
outline: none;
height: 40px;
border-radius: 20px;
background: #fb2525;
color: white;
font-size: 20px;
cursor: pointer;
}