-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
68 lines (60 loc) · 1.35 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
.contact-container {
margin-top: 20vh;
background-color: white;
border-radius: 20px;
height: fit-content;
}
h1 {
font-family: "Times New Roman", Times, serif;
font-size: 3rem;
}
p {
font-family: "Poppins", sans-serif;
font-weight: 400;
font-style: normal;
}
.contact-container h1::after {
content: "";
display: inline-block;
width: 7vw; /* Set the width of the lines */
border-top: 5px solid #2007ff; /* Set the color of the lines */
margin: 10px 15px;
border-radius: 50px;
}
.contact-cards {
width: 80%;
padding: 1rem;
background-color: rgba(171, 206, 255, 0.3);
margin-left: 1rem;
height: 15vh;
border-radius: 10px;
height: fit-content;
}
ul li {
font-size: 1.6rem;
font-family: "Poppins", sans-serif;
font-weight: 600;
font-style: normal;
}
.contact-cards i {
color: #2007ff;
margin-right: 9px;
width: fit-content;
padding: 10px;
border-radius: 20%;
box-shadow: 0 0 10px rgb(173, 173, 173);
}
@media screen and (max-width: 591px) {
.text-center p {
font-size: 0.7rem;
}
.contact-form {
height: fit-content !important;
}
.contact-container {
margin-bottom: 2rem;
}
.contact-form button {
width: 20vh !important;
}
}