Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
sebsto93 committed Mar 5, 2024
1 parent 6d49f4c commit 5ec1a57
Show file tree
Hide file tree
Showing 10 changed files with 24 additions and 1 deletion.
21 changes: 21 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ body {
color: #4d5ae5;
display: flex;
margin-right: 76px;
transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.logo_style > span {
Expand All @@ -38,6 +39,23 @@ body {
display: flex;
gap: 40px;
padding: 24px 0;
position: relative;
transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.current {
color: #404bbf;
}

.current:after {
content: '';
width: 100%;
position: absolute;
left: 0;
bottom: -1px;
height: 4px;
background-color: #404bbf;
border-radius: 2px;
}

.studio_style:hover,
Expand All @@ -47,6 +65,7 @@ body {
.address_style {
font-style: normal;
display: block;
transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.kontakt_style {
Expand Down Expand Up @@ -215,6 +234,8 @@ body {

.header_style {
border-bottom: 1px solid #e7e9fc;
box-shadow: 0px 2px 1px rgba(46, 47, 66, 0.08),
0px 1px 1px rgba(46, 47, 66, 0.16), 0px 1px 6px rgba(46, 47, 66, 0.08);
}

.container {
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
4 changes: 3 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
<nav class="navigation">
<a class="logo_style" href="./index.html">Web<span>Studio</span></a>
<ul class="left-navi-list">
<li><a class="studio_style" href="./index.html">Studio</a></li>
<li>
<a class="studio_style current" href="./index.html">Studio</a>
</li>
<li><a class="studio_style" href="">Portfolio</a></li>
<li><a class="studio_style" href="">Contacts</a></li>
</ul>
Expand Down

0 comments on commit 5ec1a57

Please sign in to comment.