-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
97 lines (78 loc) · 1.41 KB
/
style.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
/*
* This document is written by Raiyan Sarker
* Visit raiyansarker.com
* Help me by donating: mail me here: [email protected]
*/
/* Custom CSS */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');
*,
html,
body {
padding: 0;
margin: 0;
}
body {
font-family: 'Open Sans', sans-serif;
color: black;
font-weight: normal;
}
#logo {
font-weight: 600;
padding: 20px 0;
}
.menu {
font-size: 21px;
font-weight: 450;
border-bottom: 1px dotted #ccc;
}
form {
margin-top: 25px;
}
.padding-top {
padding-top: 7px;
}
.btn {
margin: 10px 0;
}
.btn-facebook {
color: white;
background-color: rgb(87, 120, 185);
transition: ease-out;
}
.btn-facebook:hover {
background-color: #4267B2;
transition: ease-in;
color: white;
}
.btn-instagram {
color: white;
background-color: rgb(243, 97, 92);
transition: ease-out;
}
.btn-instagram:hover {
transition: ease-in;
color: white;
background-color: #F34E49;
}
.footer {
min-height: 70px;
width: 100%;
color: white;
font-size: 21px;
background-color: #04091E;
}
.footer p {
margin-top: 17px;
}
.footer-links {
margin-top: 8px;
text-align: right;
}
@media (max-width:768px) {
.footer-links {
text-align: center;
margin-top: 0;
margin-bottom: 5px;
}
}