-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
79 lines (72 loc) · 1.41 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
/* [ Creator Aashu - Ashutosh Python ] */
body{
background-color: #1a1a1d;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container{
background-color: #242429;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
animation: glowing 2s linear infinite;
}
@keyframes glowing{
0%{
box-shadow: 0 0 8px #00dce7;
}
50%{
box-shadow: 0 0 25px #00dce7;
}
100%{
box-shadow: 0 0 8px #00dce7;
}
}
h1{
color: #00dce7;
text-align: center;
margin-top: 5px;
margin-bottom: 20px;
}
form{
display: flex;
flex-direction: column;
}
input[type="text"],
input[type="password"]{
padding: 10px;
margin-bottom: 10px;
border-radius: 4px;
border: none;
background-color: #242429;
color: #00dce7;
font-weight: bold;
border-radius: 8px;
box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
animation: glowing 2s linear infinite;
}
.container2{
padding: 10px;
border-radius: 2px;
border: none;
background-color: #242429;
color: #00dce7;
font-weight: bold;
border-radius: 8px;
box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
animation: glowing 2s linear infinite;
}
@keyframes glowing2{
0%{
box-shadow: 0 0 4px #00dce7;
}
50%{
box-shadow: 0 0 12px #00dce7;
}
100%{
box-shadow: 0 0 4px #00dce7;
}
}