diff options
| author | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 10:18:36 -0300 |
|---|---|---|
| committer | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 10:18:36 -0300 |
| commit | d2dd8aca869535eae62a8376a3060aa4d2ce256e (patch) | |
| tree | 2b68804a14671c0b00cc917b2f9c014cc36834d9 /styles/navbar.css | |
| parent | fc18663266a597264e3129b45ebe35ea95971f8d (diff) | |
bundling de css usando o esbuild
Diffstat (limited to 'styles/navbar.css')
| -rw-r--r-- | styles/navbar.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/styles/navbar.css b/styles/navbar.css new file mode 100644 index 0000000..2b70356 --- /dev/null +++ b/styles/navbar.css @@ -0,0 +1,32 @@ +.navbar ul { + list-style-type: none; + margin: 0px; + padding: 0px; + display: flex; + flex-wrap: wrap; + gap: 10px; +} + +.navbar li a { + display: block; + color: #999; + text-decoration: none; + border: dashed 1px; + text-align: center; + padding: 5px 10px; +} + +.navbar li a:hover { + display: block; + color: #000; + background-color: #999; +} + +@media (min-width: 1000px) { + .navbar ul { + display: flex; + flex-direction: column; + gap: 0px; + width: 125px; + } +} |
