-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.css
115 lines (91 loc) · 1.42 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
body {
background-color: rgba(164, 151, 134, 0.137);
font-family: "Playfair Display", serif;
width: 98vw;
height: 100vh;
scroll-behavior: auto;
}
/*MOBILE FIRST FOR MIN 320px */
.nav-link {
font-family :Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
color: rgb(173, 192, 8);
text-decoration: none;
}
.contact {
margin-top: 20%;
}
.icons {
position: sticky;
margin-left: 90%;
bottom: 2%;
}
.facebook, .instagram {
color: rgba(2, 6, 138, 0.708);
width : 50%;
height : 50%;
}
@media screen and (min-width:428px) {
.facebook, .instagram {
width : 70%;
height : 70%;
}
.icons {
position: fixed;
bottom: 4%;
margin-left: 85%;
}
}
@media screen and (min-width: 576px) {
.nav-link {
margin-top: 6%;
}
.facebook, .instagram {
width : 80%;
height : 80%;
}
.icons {
position: fixed;
bottom: 4%;
margin-left: 85%;
}
.contact {
margin-top: 10%;
}
}
@media screen and (min-width: 900px) {
.icons {
bottom: 1%;
margin-left: 97%;
}
}
@media screen and (min-width: 1024px) {
.nav-link {
font-size: 18px;
}
.icons {
bottom: 6%;
margin-left: 90%;
}
.facebook, .instagram {
width : 100%;
height : 100%;
}
}
@media screen and (min-width: 1200px) {
.nav-link {
font-size: 18px;
margin-top: 10%;
}
.icons {
position: fixed;
bottom: 4%;
margin-left: 90%;
}
.facebook, .instagram {
width : 100%;
height : 100%;
}
.contact {
margin-top: 5%;
}
}