-
Notifications
You must be signed in to change notification settings - Fork 2
/
forget-password.css
85 lines (69 loc) · 1.85 KB
/
forget-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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;600&family=Trispace:wght@100;200;300;400;500;600;700&display=swap');
form h3 {
color: aqua;
font-family: cursive;
font-size: 23px;
text-align: center;
}
form {
background: linear-gradient(to right, purple, rgb(255, 79, 48));
/* background-image: url("images/device.jpg");
background-repeat: no-repeat;
background-position: center;
object-fit: cover; */
display: block;
justify-content: center;
text-align: center;
margin: 25px 320px;
padding: 30px 20px;
border-radius: 25px;
border: 3px solid magenta;
font-family: 'Oswald', sans-serif;
font-family: 'Trispace', sans-serif;
}
* {
margin: 0;
padding: 0;
font-family: 'Oswald', sans-serif;
font-family: 'Trispace', sans-serif;
}
p input {
font-size: 19px;
color: black;
font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
padding: 10px 20px;
border: 2px solid purple;
border-radius: 12px;
margin: 10px;
box-shadow: 2px 5px 5px rgb(0, 0, 0);
transition: .6s;
}
p input:hover {
box-shadow: 2px 5px 4px rgb(132, 0, 165);
}
p input[type="submit"] {
background-color: rgb(0, 0, 0);
color: white;
transition: 0.5s;
}
p input[type="radio"] {
color: black;
font-size: 35px !important;
font-weight: bold;
}
#aaa {
color: rgb(0, 0, 0) !important;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 23px;
}
p input[type="submit"]:hover {
background-color: rgb(255, 255, 255);
color: black;
cursor: pointer;
}
::placeholder {
color: blueviolet;
}
label:hover {
cursor: pointer;
}