-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
85 lines (75 loc) · 1.49 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
#contact-header{
font-size: 300%;
text-align: center;
}
@import url('https://fonts.googleapis.com/css?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
.bg-custom {
background-color: #ACC8E5 !important;
}
@media (max-width: 768px) {
.navbar-nav {
flex-direction: row !important;
}
.navbar-nav .nav-item {
margin-right: 10px;
padding: .25em;
}
}
body {
background-color: #ACC8E5;
color: #112A46;
}
nav{
font-size: 150%;
padding-top: 2em;
}
ul.nav{
margin-top: 1em;
}
#navbar-brand{
max-width: 20%;
max-height: 20%;
}
#contact-info {
display: flex;
justify-content: center; /* Horizontally center the items */
align-items: center; /* Vertically center the items */
}
#contact-info div{
margin: 10px;
text-align: center;
}
.social-icons {
margin-top: 30px;
text-align: center;
}
.social-icon {
width: 40px;
height: auto;
border-radius: 25%;
text-align: center;
}
.social-icons a {
text-decoration: none;
font-size: 15px;
margin-right: 15px;
color: #112A46;
display: inline-block;
}
#contact-info div a{
color: black;
background-color: transparent;
text-decoration: none;
}
#contact-info div p{
margin-top: 1.05em;
}