-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
173 lines (156 loc) · 2.94 KB
/
styles.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/* Google Fonts Import Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
body{
font-family: 'Open Sans', sans-serif;
padding: 0;
margin: 0;
background-color: #fff;
}
/* Nav section starts here */
#Nav-Container{
background-color: #fff;
box-shadow: 1px 1px 5px 1px #eee;
align-items: center;
}
#Nav-Container article{
width: 1200px;
margin: 0 auto;
display: flex;
height: 90px;
}
#Nav-Container .logo, #Nav-Container .nav{
flex: 1;
}
#Nav-Container article .nav-links
{
display: flex;
align-items: center;
background: #8ad425;
padding: 20px 15px;
border-radius: 12px;
box-shadow: 0 5px 10px rgba(0,0,0,0.2);
justify-content: space-around;
}
#Nav-Container article .nav-links li{
list-style: none;
}
#Nav-Container article .nav-links li a{
position: relative;
font-weight: 500;
padding: 6px 0;
color: #333;
text-decoration: none;
}
#Nav-Container article .nav-links li a:hover{
color: #2594d4;
}
/* nav selection ends here */
#Slideshow-Containter .slideshow-container {
position: relative;
width: 1200px;
margin: 10px auto;
}
#Slideshow-Containter .slideshow-container img {
height: 500px;
}
.text {
color: #f2f2f2;
font-size: 15px;
padding: 8px 12px;
position: absolute;
bottom: 8px;
width: 100%;
text-align: center;
}
.numbertext {
color: #f2f2f2;
font-size: 12px;
padding: 8px 12px;
position: absolute;
top: 0;
}
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.active {
background-color: #717171;
}
.fade {
animation-name: fade;
animation-duration: 1.5s;
}
@keyframes fade {
from {opacity: .4}
to {opacity: 1}
}
#saveBlock article{
width: 90%;
margin: 30px auto;
padding-bottom: 30px;
}
#saveBlock article p{
font-weight: 700;
font-size: 26px;
color: #000;
font-family: Open Sans,sans-serif;
}
#saveBlock article main div{
width:32%;
height: 200px;
}
#saveBlock article main{
display: flex;
justify-content: space-between;
}
#saveBlock article div img{
width: 100%;
height: 200px;
border-radius: 4px;
}
#saveBlock article div img:hover{
transform: scale(1.1);
transition: ease all 0.7s;
}
#saveBlock article div figure figcaption{
color: #8ad425;
text-align: center;
font-size: 20px;
font-weight: bold;
}
/* footer start here*/
#footerSection{
height: 50px;
clear: both;
position: relative;
z-index: 1;
background: #6d787d;
}
#footerSection article{
width: 90%;
margin: 0 auto;
}
#footerSection footer{
display: flex;
justify-content: space-between;
align-items: center;
border-top: 0px solid #fff;
}
#footerSection footer div span a{
font-size: 20px;
margin: 10px;
color: #fff;
}
#footerSection footer div:nth-child(2){
color: hsla(0,0%,100%,.7);
font-weight: 700;
font-size: 12px;
}
#footerSection footer div{
margin: 18px 0 18px;
}