-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
51 lines (44 loc) · 890 Bytes
/
index.css
File metadata and controls
51 lines (44 loc) · 890 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
51
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
.main {
width: 100%;
height: 100vh;
background: url('https://www.cricdiction.com/wp-content/uploads/2023/08/World-Cup-2023.jpg');
background-size: cover;
}
.overlay {
width: 100%;
height: 100%;
display: flex;
color: white;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.6);
align-items: center;
}
.title {
margin-top: 15px;
text-align: center;
font-size: 2.5rem;
}
.col {
margin-top: 30px;
width: 1000px;
height: 150px;
display: flex;
}
input {
height: 100px;
width: 50%;
background-color: rgba(255, 255, 255, 0.6);
border-color: transparent;
border-radius: 10px;
text-align: center;
font-size: 50px;
}
.col div {
width: 250px;
text-align: center;
}