-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlogst.css
96 lines (81 loc) · 1.78 KB
/
logst.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
86
87
88
89
90
91
92
93
94
95
96
body {
margin:0;
justify-content: center;
align-items: center;
background-color: black;
padding: 3%;
background-repeat: no-repeat;
}
.mi {
align-items: center;
}
.micro {
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;
}
.micro h1 {
text-align: center;
color: black;
}
.micro input[type="text"],
.micro input[type="password"] {
width: 90%;
padding: 10px;
margin-bottom: 10px;
border-radius: 20px;
background-color: rgba(255, 255, 255, 0.7);
}
.micro input[type="submit"] {
width: 100%;
padding: 10px;
background-color: rgba(76, 175, 80, 0.7);
color: white;
border: none;
border-radius: 30px;
}
.micro input[type="submit"]:hover {
background-color: rgba(255, 0, 0, 0.7);
}
#mv {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: -1;
}
#mve {
width: 100%;
height: 100%;
object-fit: cover;
}
#mve.hide-video {
display: none;
}
@keyframes ani{
0% { border-color: rgb(4, 246, 250); }
50% { border-color: black; }
100% { border-color: rgb(0, 255, 255); }
}
p{
margin:10px 10px 0px 0px;
color:white;
font-size:16px;
}
p:hover{
transition:1s;
margin:10px 10px 0px 0px;
color:red;
font-size:18px;
}