-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (55 loc) · 1.02 KB
/
Copy pathstyle.css
File metadata and controls
61 lines (55 loc) · 1.02 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
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
.gruppo-regular {
font-family: "Gruppo", sans-serif;
/* font-weight: 200; */
font-style: normal;
}
.body{
width: 100%;
height: 100vh;
background-size:cover;
background-image: url(bg.jpg);
}
.heading{
width:100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7);
display: flex;
flex-direction: column;
align-items: center;
}
.title{
margin-top: 18px;
color: white;
font-size: 2.5rem;
text-align: center;
}
.col{
height: 100px;
width: 1000px;
display: flex;
align-items: center;
/* border: 2px solid white; */
justify-content: space-evenly;
}
.input_box{
width: 250px;
color: white;
row-gap: 10px;
display: flex;
flex-direction: column;
align-items: center;
}
input{
width: 50%;
height: 50px;
border-radius: 5px;
background-color: rgba(255, 255, 255, 0.9);
border-color: transparent;
text-align: center;
font-size: 40px;
}