-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregist.css
More file actions
96 lines (83 loc) · 1.88 KB
/
Copy pathregist.css
File metadata and controls
96 lines (83 loc) · 1.88 KB
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
*{
font-family: 'Poppins', sans-serif;
}
body{
background-image: url(wall1.jpg);
background-size: cover;
}
.loginbox{
position: absolute;
top: 50%;
left: 50%;
width: 400px;
padding: 40px;
transform: translate(-50%,-50%);
backdrop-filter: blur(20px);
border: 1px solid rgb(195, 186, 186);
box-sizing: border-box;
box-shadow: 0 2px 5px rgb(130, 128, 128);
border-radius: 2em;
}
.loginbox h2{
margin: 0 0 30px;
padding: 0;
color: rgb(0, 0, 0);
text-align: center;
}
/*tulisan username dan password*/
.loginbox .userbox{
position: relative;
}
.loginbox .userbox input{
width: 100%;
padding: 7px 0;
font-size: 16px;
color: rgb(0, 0, 0);
margin-bottom: 30px;
border: none;
border-bottom: 1px solid rgb(0, 0, 0);
outline: none;
background-color: transparent;
}
/*tulisan username dan password*/
.loginbox .userbox label{
position: absolute;
top: 0;
left: 0;
padding: 10px 0;
color: rgb(0, 0, 0);
pointer-events: none;
transition: 0.5s ease ;
}
.loginbox .userbox input:focus ~ label,
.loginbox .userbox input:valid ~ label{
top: -20px;
left: 0;
/*font setelah ke atas*/
color: rgb(255, 255, 255);
font-size: 12px;
}
.loginbox .submit a{
margin: 0 auto;
position: relative;
display: inline-block;
padding: 10px 120px;
color: rgb(0, 0, 0);
background-color: transparent;
border-radius: 25px;
text-decoration: none;
text-transform: uppercase;
overflow: hidden;
transition: 0.5s ease;
margin-top: 50px;
letter-spacing: 4px;
border: 1px solid rgb(0, 0, 0);
}
.loginbox .submit a:hover{
/*warna box submit*/
background-color:rgb(255, 255, 255);
color: rgb(0, 0, 0);
}
.login a{
color: white;
}