-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathone.css
More file actions
82 lines (81 loc) · 1.63 KB
/
Copy pathone.css
File metadata and controls
82 lines (81 loc) · 1.63 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Courier New', Courier, monospace;
}
.copy{
position: relative;
bottom: -100;
text-align: center;
}
.container{
width: 100%;
height: 100vh;
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(blk\ grn.jpg);
background-size: cover;
display: flex;
align-items: center;
justify-content: center;
}
form{
background-color: gray;
display: flex;
flex-direction: column;
padding: 2vw 4vw;
width: 90%;
max-width: 600px;
border-radius: 15px;
cursor: pointer;
font-family: 'Courier New', Courier, monospace;
border: solid;
border-color: black;
}
form h2{
color: white;
font-weight: 800;
margin-bottom: 20px;
font-family: 'Courier New', Courier, monospace;
}
form input, form textarea{
border: none;
margin: 10px 0;
padding: 20px;
outline: none;
background-color: #f5f5f5;
font-size: 16px;
}
}
/* footer{
background-color: gray;
height: auto;
width: 100vw;
font-family: 'Courier New', Courier, monospace;
padding-top: ;
color: white;
}
.footer-content{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
text-align: center;
}
.footer-content h3{
font-size: 1.8rem;
font-weight: 400;
text-transform: capitalize;
line-height: 3rem;
}
.footer-content p{
max-width: 500px;
margin: 10px auto;
line-height: 40px;
font-size: 14px;
}
.socials{
list-style: none;
align-items: center;
justify-content: center;
margin: 1rem 0 3rem;
} */