diff options
| author | Bobby <[email protected]> | 2022-10-01 08:05:13 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-10-01 08:05:13 -0400 |
| commit | 0e9e96bbe609d4e0c72da1624c79ff6672e0e1d1 (patch) | |
| tree | c8399895df9928c6f707548d6b70ee534648eaa6 /static/css | |
| parent | 8d4428b4eb15a5b7185cc644fb6d434dcc84fcbf (diff) | |
| download | thatcomputerscientist-0e9e96bbe609d4e0c72da1624c79ff6672e0e1d1.tar.xz thatcomputerscientist-0e9e96bbe609d4e0c72da1624c79ff6672e0e1d1.zip | |
Added top navigation bar
Diffstat (limited to 'static/css')
| -rw-r--r-- | static/css/main.css | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/static/css/main.css b/static/css/main.css index c9342852..5195c924 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -311,3 +311,28 @@ summary { max-height: 50vh; max-width: 100%; } + +.topnav { + list-style: none; + padding: 0; + margin: 0; + text-align: right; +} + +.topnav > li { + display: inline-block; + margin-left: 10px; + font-size: 14px; + padding: 0px 10px; + border-right: solid 1px #cecece; +} + +.topnav > li > a { + color: #feffcf; +} + +.topnav > li > a > img { + height: 14px; + position: relative; + top: 2px; +} |
