Magnific navbar
This commit is contained in:
parent
f29c381269
commit
600f4599ac
1 changed files with 26 additions and 0 deletions
26
style.css
26
style.css
|
@ -9,12 +9,38 @@ body {
|
||||||
color: --main-invert-color;
|
color: --main-invert-color;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
margin: 1rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav {
|
||||||
|
display: flex;
|
||||||
|
width: 100%;
|
||||||
|
background-color: yellowgreen;
|
||||||
|
padding: 0 20%;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ol {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
list-style-type: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ol li {
|
||||||
|
margin: auto 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav ol li button {
|
||||||
|
background-color: transparent;
|
||||||
|
padding: 0.5rem;
|
||||||
|
font-size: large;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-bubble {
|
.text-bubble {
|
||||||
|
|
Loading…
Reference in a new issue