colori e menu
This commit is contained in:
parent
29aed3d534
commit
4a3c408e40
2 changed files with 11 additions and 3 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
h1,h2,h3,h4,h5,h6,strong,b { color: #6b3d3d; font-weight: normal; }
|
||||||
|
body { background-color: #dfe0b4; font-size: 18px; }
|
||||||
|
a, a:focus, a:hover, a:visited { color: #bb7652; }
|
||||||
#all-wrapper {
|
#all-wrapper {
|
||||||
padding-left: 8vw;
|
padding-left: 8vw;
|
||||||
}
|
}
|
||||||
|
@ -12,14 +15,17 @@
|
||||||
border-radius: 1em;
|
border-radius: 1em;
|
||||||
padding: 1em 0px;
|
padding: 1em 0px;
|
||||||
}
|
}
|
||||||
#menu-row > .column {
|
#menu-row > .columns {
|
||||||
margin-left: 30vw;
|
|
||||||
font-size: 120%;
|
font-size: 120%;
|
||||||
}
|
}
|
||||||
#logo-div {
|
#logo-div {
|
||||||
position: fixed;
|
position: fixed;
|
||||||
top: 5vw;
|
top: 5vw;
|
||||||
left: -8vw;
|
left: -8vw;
|
||||||
|
|
||||||
|
border-radius: 50%;
|
||||||
|
box-shadow: 0px 0 3vw black;
|
||||||
|
line-height: 0;
|
||||||
}
|
}
|
||||||
#logo-img {
|
#logo-img {
|
||||||
width: 16vw;
|
width: 16vw;
|
||||||
|
|
|
@ -32,7 +32,8 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row" id="menu-row">
|
<div class="row" id="menu-row">
|
||||||
<div class="u-full-width column">
|
<div class="four columns"> </div>
|
||||||
|
<div class="four columns">
|
||||||
<nav><ul>
|
<nav><ul>
|
||||||
{% for title, link in MENUITEMS %}
|
{% for title, link in MENUITEMS %}
|
||||||
<li><a href="{{ link }}">{{ title }}</a></li>
|
<li><a href="{{ link }}">{{ title }}</a></li>
|
||||||
|
@ -48,6 +49,7 @@
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul></nav>
|
</ul></nav>
|
||||||
|
<div class="four columns"> </div>
|
||||||
</div><!-- column -->
|
</div><!-- column -->
|
||||||
</div><!-- menu-row -->
|
</div><!-- menu-row -->
|
||||||
<div class="row" id="content-row">
|
<div class="row" id="content-row">
|
||||||
|
|
Loading…
Reference in a new issue