-
Notifications
You must be signed in to change notification settings - Fork 19
/
style.css
86 lines (72 loc) · 1.56 KB
/
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
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
body {
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #a9e190;
transform: scale(0.75);
overflow: hidden;
}
.dev-credit {
margin: 0px;
margin-top: 10px;
color: black;
}
.form-container {
width: 500px;
background-color: white;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
background: rgba(255, 255, 255, 0.18);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
form {
display: flex;
flex-direction: column;
}
input[type="number"],
input[type="text"],
input[type="password"] {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 4px;
background: rgba(255, 255, 255, 0.18);
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.3);
}
button {
padding: 10px;
border: none;
border-radius: 4px;
background-color: #0c0d0d;
color: white;
cursor: pointer;
}
button:hover {
transition: 0.3s;
background-color: #252627;
}
button:disabled {
background-color: #5c5c5c;
color: black;
cursor: not-allowed;
opacity: 0.5;
}
h1 {
text-align: center;
color: #333;
font-size: 24px;
margin-bottom: 20px;
}
textarea:focus, input:focus{
outline: none;
}