-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (48 loc) · 936 Bytes
/
Copy pathstyle.css
File metadata and controls
50 lines (48 loc) · 936 Bytes
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
*{
padding:0;
margin:0;
box-sizing: border-box;
font-family: 'Poppins',sans-serif;
}
.main{
width: 100%;
height:100vh;
background-image: url("WhatsApp Image 2024-01-12 at 10.33.05 PM (1).jpeg");
background-size: cover;
background-position: center;
}
.overlay{
width:100%;
height:100%;
background-color: rgba(0,0,0,0.7);
display: flex;
flex-direction: column;
/* color:white; */
align-items: center;
}
.title{
font-size: 2.5rem;
color:white;
text-align: center;
margin-top: 10px;
}
.col{
margin-top:20px;
width:90%;
justify-content: center;
display: flex;
color: aliceblue;
}
input{
width: 50%;
height:50px;
background-color: aliceblue;
border-color: transparent;
border-radius: 5px;
text-align: center;
font-size: 30px;
}
.col div{
width:250px;
text-align: center;
}