-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.css
More file actions
53 lines (49 loc) · 1019 Bytes
/
custom.css
File metadata and controls
53 lines (49 loc) · 1019 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
52
53
* {
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'poppins',sans-serif;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100&display=swap');
.main {
width: 100%;
height: 100vh;
background: url('../Image.jpg');
background-size: cover;
}
.overlay {
height: 100%;
width: 100%;
display: flex;
color: white;
flex-direction: column;
background-color: rgba(0,0,0,0.6)
}
.tittle {
margin-top: 10px;
color: white;
font-size: 2.5rem;
text-align: center;
}
.col {
width: 1000px;
border: 1px white;
margin: 10px auto;
display: flex;
justify-content: center;
color: white;
}
input {
height: 60px;
width: 50%;
background-color: rgba(255,255,255,0.5);
border-color: transparent;
border-radius: 5px;
text-align: center;
font-size: 20px;
}
.col div {
width: 250px;
text-align: center;
margin-top: 10px;
}