Skip to content

Commit

Permalink
update ui
Browse files Browse the repository at this point in the history
  • Loading branch information
maximoospital committed Jun 16, 2024
1 parent 39452bd commit c669d5f
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 17 deletions.
12 changes: 0 additions & 12 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,3 @@
<nav class="tui-nav">
<ul>
<li class="tui-dropdown">
<span class="red-168-text">F</span>ile
<div class="tui-dropdown-content">
<ul>
<li><a href="#!"><span class="red-168-text">N</span>ew</a></li>
</ul>
</div>
</li>
</ul>
</nav>

<head>
<meta charset="utf-8">
Expand Down
16 changes: 15 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,23 @@
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{% include head.html %}
<body>
<nav class="tui-nav">
<ul>
<li class="tui-dropdown">
<span class="red-168-text">F</span>ile
<div class="tui-dropdown-content">
<ul>
<li><a href="#!"><span class="red-168-text">N</span>ew</a></li>
</ul>
</div>
</li>
</ul>
</nav>
<div class="contenido">
<div class="container">
{{ content }}
</div>
</div>
</div>
</body>

</html>
12 changes: 8 additions & 4 deletions _sass/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,20 @@ html {
overflow-y: scroll;
}

body {
.contenido {
width: 100%;
padding: 0;
margin: 25px 0;
}

body {
background: $color__black;
font-family: $inconsolata;
font-size: $font__size;
font-weight: $font__weight;
padding: 0;
margin: 0;
}

.container {
margin: 0 25px;
}
Expand All @@ -76,7 +80,7 @@ body {
.container {
margin: 0 50px;
}
body {
.contenido {
margin: 50px 0 25px;
}

Expand All @@ -86,7 +90,7 @@ body {
.container {
margin: 0 120px;
}
body {
.contenido {
margin: 120px 0 50px;
}

Expand Down

0 comments on commit c669d5f

Please sign in to comment.