-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset.css
More file actions
89 lines (66 loc) · 1.22 KB
/
reset.css
File metadata and controls
89 lines (66 loc) · 1.22 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
body
{
font-family: Tahoma,Geneva,sans-serif;
color: #fff;
background: url(Images/login.png);
background-size: cover;
}
a
{
color: yellow;
text-decoration: blink;
font-family: Tahoma,Geneva,sans-serif;
margin-left: 35px;
}
.reset
{
background: rgba(44,62,80,0.7);
padding:40px;
width:240px;
height: 340px;
margin-left: 180px;
margin: 0 auto;
margin-top: 120px;
}
h2
{
margin-top: 15px;
margin-left: 10px;
}
input[type=password]
{
width: 240px;
background: transparent;
border: none;
border-bottom: 1px solid #fff;
font-family: "Play",sans-serif;
font-size: 16px;
font-weight: 200px;
padding: 10px 0;
transition: border 0.5s;
text-align: center;
color: white;
}
input[type=button]
{
border: none;
background: white;
color: black;
font-size: 16px;
line-height: 25px;
padding: 10px 0;
border-radius: 12px;
cursor: pointer;
width: 180px;
margin-left: 30px;
}
input[type=button]:hover
{
background: black;
color:white;
}
::placeholder
{
color: aliceblue;
opacity: 0.8;
}