-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (44 loc) · 886 Bytes
/
style.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
body{
background: #7f3fff;
text-align:center ;
font-family: sans-serif;
}
.form{
background-color: #e0e1e2;
width: 500px;
padding: 300px 40px;
position:relative;
height: 250px;
margin-left: 450px;
margin-top: 10px;
border-radius:12px;
box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
}
label{
font-weight: 500;
color: #101030;
}
input{
display: block;
width: 100%;
margin-top: 2px;
padding: 12px;
border-radius: 5px;
outline: none;
color: #101030;
}
input[type="text"]{
border: 2px solid #fff;
}
input[type="password"]{
border: 2px solid #fff;
}
input[type="button"]{
background-color: #7f3fff;
border: none;
color: #fff;
font-weight: 500;
font-size: 18px;
letter-spacing: 1px;
cursor: pointer;
}