-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdesign.css
More file actions
57 lines (55 loc) · 1015 Bytes
/
design.css
File metadata and controls
57 lines (55 loc) · 1015 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
46
47
48
49
50
51
52
53
54
55
56
57
body{
font-family: Verdana, Geneva, Tahoma, sans-serif;
background:linear-gradient(transparent,blue);
height: 100vh;
width: 100%;
}
form{
text-align: center;
}
.main{
height: 450px;
width: 380px;
background-color: blue;
margin: 80px auto;
box-shadow: 4px 6px 20px;
}
h1{
padding-top: 20px;
}
input{
display: block;
margin: 20px auto;
height: 30px;
width: 280px;
margin-bottom: 20px;
font-size: 16px;
font-weight: bold;
padding-left: 8px;
}
input:focus{
border: 2px solid black;
background-color: rgb(28, 241, 45);
}
button{
width: 90px;
height: 35px;
text-align: center;
font-weight: bold;
font-size: 18px;
border: none;
transition: 0.4s;
background-color: darkcyan;
margin-bottom: 15px;
}
button:hover{
background-color: darkorange;
color: white;
}
::placeholder{
padding-left: 8px;
}
.err{
font-weight: 500;
color: yellow;
}