-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.css
97 lines (90 loc) · 1.47 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
:root{
--defmar: 5px;
--defpad: 5px;
--border: 2px solid black;
--color: rgba(239, 220, 212, 1);
}
*{
margin: 0px;
padding: 0px;
}
/* navbar */
nav{
position: sticky;
top: 0px;
width: 1700px;
z-index: 1;
background-color: var(--color);
display: flex;
justify-content: space-around;
align-items: center;
}
.h3{
margin: 10px;
padding: 10px;
}
.container1{
display: flex;
justify-content: space-between;
align-items: center;
}
ul{
display: flex;
justify-content: flex-start;
align-items: center;
}
ul li{
margin: 10px;
padding: 10px;
list-style: none;
}
ul li:hover{
cursor: pointer;
color: rgb(114, 84, 70);
}
/* contact */
.contact{
width: 1700px;
height: 717px;
position: relative;
/* top: 197px; */
color: white
}
.bg{
width: 1700px;
height: 717px;
z-index: 0;
}
.contacth1{
font-size: 100px;
position: absolute;
top: 160px;
left: 400px;
}
.icons{
position: relative;
bottom: 200px;
display: flex;
justify-content: center;
align-items: center;
}
.iconsimg{
margin: 20px;
padding: 10px;
/* transform: scale3D(1.5); */
}
.iconsimg:hover{
background-color: rgb(214, 181, 168);
}
.footer{
padding: 7px;
color: black;
background-color: white;
position: relative;
bottom: 142px;
z-index: 1;
display: flex;
justify-content: center;
align-items: center;
font-size: 30px;
}