-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
81 lines (80 loc) · 1.42 KB
/
styles.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
*{
margin: 0;
padding: 0;
font-family: 'Lato', sans-serif;
}
.container{
height: 100vh;
background-image: url('img1.jpg');
background-position: center;
background-size: contain;
}
.box{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
height: 400px;
width: 400px;
backdrop-filter: blur(2px);
background-color: #222b3369;
border-radius: 20px;
}
.content{
display: flex;
flex-direction: column;
gap: 10px;
/* text-align: center; */
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.content h1{
position: relative;
top: -30px;
color: white;
font-size: 50px;
font-weight: 100;
}
input{
width: 300px;
height: 10px;
padding: 10px;
outline: none;
border: none;
border-radius: 2px;
}
.btn{
height: 30px;
width: 90px;
cursor: pointer;
border: none;
border-radius: 20px;
transition: all .3s ;
transition-timing-function: ease-in-out;
}
.btn1{
margin-left: 10px;
}
.btn:hover{
background-color: transparent;
color: white;
scale: 120%;
}
a{
color: white;
text-decoration: none;
transition: all .3s ;
transition-timing-function: ease-in-out;
}
a:hover{
color: grey;
}
.link{
position:absolute;
bottom:0;
}
.back{
color: red;
}