-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
73 lines (73 loc) · 1.27 KB
/
contact.css
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
@font-face{
font-family: 'Open Sans';
src: url(assets/fonts/OpenSans-Light.ttf);
font-weight: 300;
}
.info-cover {
position: absolute;
width: 100%;
height: 100%;
background-color: #11183B;
align-items: center;
justify-content: center;
display: flex;
font-family: 'Open Sans';
}
@keyframes form {
0% {width: 0%; height: 0%;}
50% {width: 10%; height: 10%;}
100% {width: 80%; height: 80%;}
}
.section-2{
margin-top: -660px;
position: absolute;
width: 100%;
height: 30%;
z-index: 0;
background-color: #011aa7;
}
.prefix {
color: white;
}
.forms {
width: 80%;
height: 60%;
background-color: #181A1B;
animation: form .75s linear;
z-index: 1;
}
.contact {
width: 100%;
height: 100%;
}
.form-content {
height: 100%;
text-align: center;
font-size: 2em;
}
.message-text {
margin-top: 30px;
margin-bottom: 100px;
}
.input {
margin-left: 0px;
height: 4em;
width: 100%;
background-color: rgb(97,97,97);
color: #fff;
border-style: solid;
border-color: #121212;
border-width: 2px;
border-radius: 8px;
}
::placeholder {
color: #fff;
font-family: 'Open Sans';
}
.button {
padding-left: 89%;
padding-top: 7%;
}
.message {
width: 80%;
}