-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcontact.css
More file actions
91 lines (78 loc) · 1.5 KB
/
contact.css
File metadata and controls
91 lines (78 loc) · 1.5 KB
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
.full-page {
height: 100%;
width: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(contact.jpg);
background-position: center;
background-size: cover;
position: absolute;
}
.navbar {
display: flex;
align-items: center;
padding: 20px;
}
nav {
flex: 1;
text-align: right;
}
nav ul {
display: inline-block;
list-style: none;
}
nav ul li {
display: inline-block;
margin-right: 70px;
}
nav ul li a {
text-decoration: none;
font-size: 20px;
color: white;
font-family: "Poppins", sans-serif;
}
nav ul li button {
font-size: 20px;
color: red;
outline: none;
border: none;
background: transparent;
cursor: pointer;
font-family: sans-serif;
}
nav ul li button:hover {
color: red;
}
nav ul li a:hover {
color: red;
}
a {
text-decoration: none;
color: red;
font-size: 28px;
}
#contact-section {
text-align: center;
padding: 50px 0;
color: cornflowerblue;
}
#contact-section h2{
font-size: 40px;
}
.contact-info {
max-width: 400px;
margin: 0 auto;
background-color: transparent
padding: 20px;
margin-top: 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-info p {
margin-bottom: 10px;
color: white;
}