Skip to content

Commit bba2fbd

Browse files
Remove the duplicate code, issue #233
1 parent 4b7c5dc commit bba2fbd

File tree

1 file changed

+1
-98
lines changed

1 file changed

+1
-98
lines changed

src/assets/css/styles.css

Lines changed: 1 addition & 98 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ nav ul li a:focus {
6363
display: none;
6464
cursor: pointer;
6565
}
66-
66+
6767
.burger div {
6868
width: 25px;
6969
height: 2px;
@@ -200,103 +200,6 @@ nav ul li a:focus {
200200
}
201201
}
202202

203-
/* Navbar */
204-
.navbar {
205-
display: flex;
206-
align-items: center;
207-
justify-content: space-between;
208-
padding: 20px;
209-
width: 100%;
210-
height: 80px;
211-
position: fixed;
212-
top: 0;
213-
background-color: var(--footerDarkBg);
214-
color: #fff;
215-
}
216-
217-
/* Logo */
218-
.navbar .logo {
219-
order: 2;
220-
border: 1px solid rgba(255, 255, 255, 0.6);
221-
border-radius: 50%;
222-
margin-right: 20px;
223-
transition: border 0.5s ease-in-out;
224-
}
225-
226-
.navbar .logo:hover {
227-
border: 1px solid rgba(255, 255, 255, 1);
228-
}
229-
230-
.navbar .logo img {
231-
width: 50px;
232-
padding: 10px;
233-
}
234-
235-
/* Nav buttons */
236-
nav {
237-
order: 1;
238-
}
239-
240-
nav ul {
241-
display: flex;
242-
}
243-
244-
nav ul li a {
245-
padding: 15px 10px;
246-
margin: 38px;
247-
color: #fff;
248-
opacity: 0.6;
249-
transition: opacity 0.37s ease-in-out;
250-
}
251-
252-
nav ul li a:hover {
253-
border-radius: 2px;
254-
opacity: 1;
255-
}
256-
257-
nav ul li a:active,
258-
nav ul li a:focus {
259-
border-bottom: 2px solid var(--mainBackground);
260-
opacity: 1;
261-
}
262-
263-
/* Hero Section*/
264-
#hero {
265-
height: 100vh;
266-
}
267-
268-
.content {
269-
display: flex;
270-
flex-direction: column;
271-
align-items: center;
272-
justify-content: flex-start;
273-
text-align: center;
274-
padding: 110px 20px 30px;
275-
}
276-
277-
.content .social a {
278-
margin: 0 20px;
279-
}
280-
281-
#vision {
282-
margin: 0 20px;
283-
}
284-
285-
/* Vision Section */
286-
#vision .vision-content {
287-
display: flex;
288-
flex-direction: column;
289-
align-items: center;
290-
justify-content: center;
291-
text-align: center;
292-
max-width: 1000px;
293-
margin: 0 auto;
294-
padding: 30px 20px;
295-
background-color: #fff;
296-
border-radius: 12px;
297-
box-shadow: 4px 4px 4px 3px var(--shadow);
298-
}
299-
300203
/* Button */
301204
.buttons {
302205
margin-top: 60px;

0 commit comments

Comments
 (0)