summaryrefslogtreecommitdiff
path: root/css/header.css
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-03-27 21:29:24 +0200
committerMinteck <contact@minteck.org>2022-03-27 21:29:24 +0200
commit226516aca48e97d3dc4e4df213bc2023e64b1afd (patch)
tree60fb4f24b75b120e7e5b0e149069b16367c48aa0 /css/header.css
downloadargon-226516aca48e97d3dc4e4df213bc2023e64b1afd.tar.gz
argon-226516aca48e97d3dc4e4df213bc2023e64b1afd.tar.bz2
argon-226516aca48e97d3dc4e4df213bc2023e64b1afd.zip
Initial commit
Diffstat (limited to 'css/header.css')
-rw-r--r--css/header.css20
1 files changed, 20 insertions, 0 deletions
diff --git a/css/header.css b/css/header.css
new file mode 100644
index 0000000..7227fa1
--- /dev/null
+++ b/css/header.css
@@ -0,0 +1,20 @@
+#frame-header {
+ position: fixed;
+ top: 0;
+ right: 0;
+ left: 0;
+ border-bottom: 1px solid rgba(0, 0, 0, .175);
+ background-color: rgba(0, 0, 0, .02);
+ transition: background-color 200ms;
+ overflow: auto;
+ padding: 10px;
+ display: flex;
+ align-items: center;
+ height: 24px;
+ font-size: 20px;
+ font-weight: 600;
+}
+
+#frame-header:hover {
+ background-color: rgba(0, 0, 0, .03);
+} \ No newline at end of file