-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle1.css
More file actions
120 lines (103 loc) · 1.62 KB
/
style1.css
File metadata and controls
120 lines (103 loc) · 1.62 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body{
margin: 0;
padding: 0;
font-family: "Open Sans",sans-serif;
}
footer{
background: #f1f1f1;
padding: 90px 0;
}
.footer-container{
max-width: 1300px;
margin: auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap-reverse;
}
.logo{
width: 180px;
}
.social-media{
margin: 20px 0;
}
.social-media a{
color: #001a21;
margin-right: 25px;
font-size: 22px;
text-decoration: none;
transition: .3s linear;
}
.social-media a:hover{
color: #fc5c65;
}
.right-col h1{
font-size: 26px;
}
.border{
width: 100px;
height: 4px;
background: #fc5c65;
}
.newsletter-form{
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
}
.txtb{
flex: 1;
padding: 18px 40px;
font-size: 16px;
color: #293043;
background: #ddd;
border: none;
font-weight: 700;
outline: none;
border-radius: 30px;
min-width: 260px;
}
.btn{
padding: 18px 40px;
font-size: 16px;
color: #f1f1f1;
background: #fc5c65;
border: none;
font-weight: 700;
outline: none;
border-radius: 30px;
margin-left: 20px;
cursor: pointer;
transition: opacity .3s linear;
}
.btn:hover{
opacity: .7;
}
.page-content{
min-height: 100vh;
font-size: 40px;
display: flex;
align-items: center;
justify-content: center;
}
@media screen and (max-width:960px) {
.footer-container{
max-width: 600px;
}
.right-col{
width: 100%;
margin-bottom: 60px;
}
.left-col{
width: 100%;
text-align: center;
}
}
@media screen and (max-width:700px){
.btn{
margin: 0;
width: 100%;
margin-top: 20px;
}
}