-
Notifications
You must be signed in to change notification settings - Fork 0
/
password.css
71 lines (62 loc) · 1.25 KB
/
password.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
61
62
63
64
65
66
67
68
69
70
71
*{
margin: 0;
padding: 0;
user-select: none;
box-sizing: border-box;
}
body {
background: linear-gradient(to bottom right, blue, pink);
justify-content: center;
align-items: center;
display: flex;
min-height: 100vh;
}
.box {
background: linear-gradient(to right, pink, blue);
border-radius: 30px;
padding-top: 30px;
padding: 30px;
}
.box2{
margin-bottom: 40px;
text-align: center;
font-size: 26px;
color: forestgreen;
}
input{
padding: 20px;
user-select: none;
height: 50px;
width: 400px;
border-radius: 6px;
border: none;
border: 2px solid rgb(rgb(51, 159, 64), rgb(71, 133, 71), rgb(4, 71, 27));
outline: none;
font-size: 22px;
}
input::placeholder {
font-size: 23px;
}
#button {
font-family: sans-serif;
font-size: 15px;
margin-top: 40px;
border: 2px solid rgb(79, 87, 80);
width: 155px;
height: 50px;
text-align: center;
background-color: whitesmoke;
display: flex;
color:rgb(0, 0, 0);
justify-content: space-around;
align-items: center;
cursor:pointer;
border-radius: 7px;
}
.btn2{
margin-left: 85px;
}
#button:hover{
color: whitesmoke;
background-color: black;
}