diff options
author | Alex Vitkov <alexvitkov98@gmail.com> | 2021-01-29 14:45:52 +0200 |
---|---|---|
committer | Alex Vitkov <alexvitkov98@gmail.com> | 2021-01-29 14:45:52 +0200 |
commit | 8ba2c35a306719932307ec5f99701101637e1fd2 (patch) | |
tree | 0492e0d614c8afe741c8160481526c73175d99cb /css/style.css | |
parent | f4d5d71da4f94bf9bc87505e745eed913c9858b9 (diff) | |
download | fileup-8ba2c35a306719932307ec5f99701101637e1fd2.tar.gz |
Menu bar, different .php pages for logged in/not logged in
Diffstat (limited to 'css/style.css')
-rw-r--r-- | css/style.css | 28 |
1 files changed, 27 insertions, 1 deletions
diff --git a/css/style.css b/css/style.css index 18d4817..9296e87 100644 --- a/css/style.css +++ b/css/style.css @@ -23,13 +23,38 @@ body { #header { background: white; margin: 0; - padding: 1rem; + padding: 0; + height: 3rem; font-size: 2em; + display: flex; + align-items: stretch; + user-select: none; + -webkit-user-select: none; + -ms-user-select: none; +} + +#topmenu { + font-size: 1.3rem; + list-style-type: none; + display: flex; + margin: 0; + padding: 0; +} + +#topmenu > li { + cursor: pointer; + padding: 10px; +} + +#topmenu > li:hover { + background: #eee; } .logo { font-family: monospace; margin: 0; + align-self: center; + padding-left: 2rem; } #hero { @@ -199,3 +224,4 @@ input[type=submit]:hover { #loginform { display: none; } + |