-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinxcss.css
65 lines (53 loc) · 1.25 KB
/
inxcss.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
body {
margin:0;
justify-content: center;
align-items: center;
background-color: black;
padding: 3%;
background-repeat: no-repeat;
}
h3,h2,h4{
color:white;
}
div {
margin:20% 0% 20% 0%;
width: 300px;
padding: 20px;
background-color: transparent;
border-radius: 50px;
box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
animation-name: ani;
transition:1s;
animation-duration: 2.5s;
animation-iteration-count: infinite;
border: 2px solid rgba(0, 217, 255, 0);
animation-timing-function: ease-in-out;
}
div h2 {
text-align: center;
color: white;
}
div input[type="text"],
div input[type="password"] {
width: 100%;
padding: 10px;
margin-bottom: 10px;
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.7);
}
div input[type="submit"] {
width: 100%;
padding: 10px;
background-color: rgba(76, 175, 80, 0.7);
color: white;
border: none;
border-radius: 30px;
}
div input[type="submit"]:hover {
background-color: rgba(255, 0, 0, 0.7);
}
@keyframes ani{
0% { border-color: rgb(4, 246, 250); }
50% { border-color: black; }
100% { border-color: rgb(0, 255, 255); }
}