-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
81 lines (69 loc) · 1.37 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
#contact{
padding-left:30px;
}
.contact .container{
margin-top:100px;
margin-bottom:150px;
color:whitesmoke;
}
.contact .details{
font-size: 25px;
width:600px;
margin:auto;
}
.contact .right{
margin: 30px;
text-align: right;
}
.contact a {
left:700px;
border-radius: 9px;
background-color: rgb(148, 16, 16);
padding: 24px 48px;
color: black;
font-size: 25px;
text-decoration: none;
box-shadow: 5px 5px 15px black;
}
.contact a:hover {
padding: 25px 49px;
font-size: 26px;
background-color: rgb(114, 14, 14);
transition: padding 0.2s, font-size 0.2s, background-color 0.2s;
}
.contact a:active {
padding: 24px 48px;
font-size: 25px;
}
@media (max-width:860px){
#contact{
padding-left:0;
text-align: center;
}
.contact .container{
margin-top:40px;
margin-bottom:40px;
}
.contact .details{
font-size: 16px;
text-align: justify;
padding: 0px 14px;
width: initial;
}
.contact .right{
margin: 30px;
text-align: right;
}
.contact a {
padding: 10px 13px;
font-size: 16px;
}
.contact a:hover {
padding: 10px 13px;
font-size: 16px;
}
.contact a:active {
padding: 10px 13px;
font-size: 16px;
}
}