-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlog.css
More file actions
125 lines (120 loc) · 2.16 KB
/
log.css
File metadata and controls
125 lines (120 loc) · 2.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url("https://fonts.googleapis.com/css?family=Baloo+Bhai&display=swap");
:root {
--hue-neutral: 200;
--hue-wrong: 0;
--hue-correct: 145;
}
*{
margin: 0;
padding: 0;
font-family: 'Baloo Bhai', cursive;
font-size: 15px;
}
.hero{
--hue: var(--hue-neutral);
padding: 0;
margin: 0;
display: flex;
width: 100vw;
height: 100vh;
background-image: url(img/vi.jpg);
/* background-color: hsl(var(--hue), 100%, 20%); */
justify-content: center;
align-items: center;
background-position: center;
background-size: cover;
position: absolute;
}
body.correct {
--hue: var(--hue-correct);
}
body.wrong {
--hue: var(--hue-wrong);
}
.form{
width: 380px;
height: 480px;
position: relative;
margin: 6% auto;
background-image: url(img/a.jpg);
backdrop-filter: blur(16px);
padding: 5px;
overflow: hidden;
border-radius: 15px;
box-shadow: #000000;
}
.but{
width: 220px;
margin: 35px auto;
position: relative;
box-shadow: #0a0a0a;
border-radius: 30px;
}
.b1
{
padding: 10px 30px;
cursor: pointer;
background: transparent;
border: 0;
outline: none;
position: relative;
}
#btn{
top: 0;
left: 0;
position: absolute;
width: 110px;
height: 100%;
background: #e1e5e8;
border-radius: 30px;
transition: 0.5s;
}
.input-g{
top: 180px;
position: absolute;
width: 280px;
transition: 0.5s;
}
.input-2{
width: 100%;
padding: 10px 0;
margin: 5px 0;
border-top: 0;
border-right: 0;
border-left: 0;
border-bottom: 1px solid #ffffff;
outline: none;
background: transparent;
color: #ffffff;
font-size: 20px;
}
.input-2 ::placeholder{
color: #f3f2f2;
background-color: white;
}
.submit-btn{
width: 85%;
padding: 10px 30px;
cursor: pointer;
display: block;
margin: auto;
background: #e1e5e8;
border: 0;
outline: none;
border-radius: 30px;
}
.check-box{
margin: 30px 10px 30px 0;
}
span{
color: #ffffff;
font-size: 12px;
bottom: 68px;
position: absolute;
}
#Login{
left: 50px;
}
#Register{
left: 450px;
}