diff options
author | GitLab <root@localhost> | 2023-11-02 17:48:06 +0100 |
---|---|---|
committer | Achilleas Pipinellis <axil@gitlab.com> | 2023-11-02 17:48:06 +0100 |
commit | 7e14d7545918b9167dd65bea8da454d2e389df5b (patch) | |
tree | a431210ea9d13938374d3efd616dffd1b5c9b189 /public/style.css |
Initialized from 'Pages/Plain HTML' project template
Template repository: https://gitlab.com/pages/plain-html
Commit SHA: 396503239588706482b3fc6e91009183271d46dd
Diffstat (limited to 'public/style.css')
-rw-r--r-- | public/style.css | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/public/style.css b/public/style.css new file mode 100644 index 0000000..3eae408 --- /dev/null +++ b/public/style.css @@ -0,0 +1,24 @@ +body { + font-family: sans-serif; + margin: auto; + max-width: 1280px; +} + +.navbar { + background-color: #313236; + border-radius: 2px; + max-width: 800px; +} + +.navbar a { + color: #aaa; + display: inline-block; + font-size: 15px; + padding: 10px; + text-decoration: none; +} + +.navbar a:hover { + color: #ffffff; +} + |