-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
102 lines (100 loc) · 1.81 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
95
96
97
98
99
100
101
102
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f3f3f3;
}
header{
color: rgb(101, 99, 99);
text-align: right;
padding: 10px;
font-size: 13px;
margin-top: 10px;
}
header a {
color: rgb(101, 99, 99);
margin-left: 10px;
text-decoration: none;
}
.pbox1{
font-size: 30px;
padding-left: 10%;
}
.pbox2{
display: flex;
padding-left: 10%;
justify-content: space-between;
}
.pbox2a{
width: 50%;
justify-content: space-between;
padding-right:5% ;
font-family: 'Times New Roman', Times, serif;
line-height: 1.5;
font-size: 15px;
}
a{
text-decoration: none;
}
.pbox2b{
width: 50%;
margin-bottom: 1%;
display: flex;
align-items: center;
}
.context{
display: flex;
flex-direction: column;
align-items: start;
gap: 20px;
}
.contact-input{
width: 100%;
height: 40px;
background-color: #f3f3f3;
border-width: thin;
border-radius:2px;
margin-right: 10px;
}
.contact-input-sub{
width: 95%;
height: 40px;
background-color: #f3f3f3;
border-width: thin;
border-radius:1px
}
.context textarea{
width: 220px;
height: 100px;
}
.context button{
width: 100px;
height: 100px;
border-radius: 50%;
border: 1px solid #070707;
background-color: #eea302;
font-size: 16px;
font-weight: bold;
cursor: pointer;
transition-duration: 0.4s;
}
.context button:hover{
background-color: #f3f3f3;
}
.box5{
display: flex;
margin-left: 3%;
}
.box6,.box7,.box8{
width: calc(100% / 3);
padding: 2%;
font-size: 13px;
}
@media (max-width:800px) {
.pbox2b{
width: 80vw;
}
.pbox2a{
display:none;
}
}