-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyl.css
228 lines (188 loc) · 3.73 KB
/
styl.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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
@import url('https://fonts.googleapis.com/css2?family=Grenze+Gotisch:wght@700&family=Hind:wght@600&family=Kalnia:wght@700&family=Teko&display=swap');
body{
border:0;
margin:0;
padding:5px;
}
.hero {
padding: 5px;
font-size: 30px;
font-weight: bold;
font-family: 'hind','sans-serif';
color: black;
text-align: center;
}
/* Add a black background color to the top navigation */
nav {
background-color: #051821;
overflow: hidden;
position: sticky;
top:2px;
padding:5px;
margin: 0;
border: 0;
height:50px;
border-radius:5px;
}
nav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding:16px 14px;
text-decoration: none;
font-size: 17px;
}
nav a:hover {
background-color: #ddd;
color: black;
}
nav a.active {
background-color: red;
color: white;
}
nav .navo{
display:none;
}
nav .icon {
display: none;
}
.sidenav {
margin:1px;
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
background-color: #111; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 100px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* The navigation menu links */
.sidenav .li{
margin-top: 10px;
margin-left:45px;
}
.sidenav .li a{
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
font-family: "kalnia";
padding:5px;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
position: absolute;
padding-top: 20px;
top: 0px;
right: 30px;
font-size: 36px;
margin-left: 50px;
text-decoration: none;
color: white;
display: block;
transition: 0.3s;
}
.sidenav .renavo{
color: whitesmoke;
position: absolute;
top: 25px;
left:50px;
font-size: 35px;
font-family:"kalnia";
}
@media screen and (max-width: 600px) {
nav a:not(:last-child) {
display: none;
}
nav .navo{
float:left;
display: block;
font-size: 40px;
color:white;
font-family:'kalnia';
position: absolute;
top:5px;
left:20px;
}
nav a.icon {
float: right;
display: block;
font-size:20px;
}
nav.responsive {position: relative;}
nav.responsive a.icon {
position: absolute;
right: 0;
top:1px;
}
nav.responsive a {
float: none;
display: block;
text-align: left;
}
}
/* Slideshow container */
.slideshow-container {
max-width: auto;
margin-top:10px;
border:0px;
padding: 0;
height: 200px;
overflow: hidden;
position:relative;
border-radius:20px;
background-color: greenyellow;
}
.slideshow-container img {
max-width: 100%;
height: 200px;
float: right;
}
/* Next & previous buttons */
.prev, .next {
cursor: pointer;
position: absolute;
top: 50%;
width: auto;
padding: 16px;
margin-top: 45px;
color: white;
font-weight: bold;
font-size: 18px;
transition: 0.6s ease;
border-radius: 0 3px 3px 0;
user-select: none;
}
/* Position the "next button" to the right */
.next {
left: 140px;
}
.prev {
left: 20px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
background-color: rgba(0,0,0,0.8);
}
/* Caption text */
.text {
height: 200px;
width: 300px;
color: rebeccapurple;
font-size: 25px;
position:absolute;
float: left;
top:0;
padding-top:30px;
padding-left: 30px;
background: linear-gradient(to left, transparent, skyblue 40%);
}