-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
94 lines (82 loc) · 1.61 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.contact {
display: flex;
flex-direction: column;
align-items: center;
}
.contact_upper {
display: flex;
flex-direction: column;
align-items: center;
background-color: #49c4d7;
color: #282828;
background-image: url(milk.png);
background-repeat: no-repeat;
background-position: left;
background-size: 6rem;
padding: 2rem 0;
width: 100%;
margin-bottom: 2rem;
}
.contact_head {
display: flex;
flex-direction: column;
align-items: center;
}
.contact_head span {
font-size: .75rem;
color: #807f7faf;
}
.contact_social{
display: flex;
gap: .25rem;
}
.contact_lower {
display: flex;
width: 100%;
justify-content: space-around;
}
.contact_detail {
display: flex;
flex-direction: column;
gap: .25rem;
width: 12rem;
}
.contact_detail a {
display: flex;
align-items: center;
color: #00abcd;
gap: 1rem;
}
.contact_social{
margin: 1rem 0;
}
.contact_social a {
color: #282828;
}
.contact_section h2 {
margin-bottom: 1rem;
}
.contact_form {
display: flex;
flex-direction: column;
align-items: center;
gap: .5rem;
}
.contact_form input {
height: 2rem;
padding: 0 .5rem;
width: 20rem;
border-radius: .25rem;
border: 2px solid #00cff3;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
}
#message {
padding-bottom: 5rem;
}
.contact_form button {
padding: .5rem 7.45rem;
margin-bottom: 1rem;
}