summaryrefslogtreecommitdiff
path: root/assets/css/src/header.css
diff options
context:
space:
mode:
Diffstat (limited to 'assets/css/src/header.css')
-rw-r--r--assets/css/src/header.css68
1 files changed, 68 insertions, 0 deletions
diff --git a/assets/css/src/header.css b/assets/css/src/header.css
new file mode 100644
index 00000000..98b696b2
--- /dev/null
+++ b/assets/css/src/header.css
@@ -0,0 +1,68 @@
+header {
+ display: flex;
+ flex-wrap: wrap;
+ padding: 5px 10px;
+ margin-bottom: 5px;
+ border-bottom: 1px solid #dedede;
+ background-color: #fbfbfb
+}
+
+header .title-container {
+ flex: 1;
+ min-width: 300px
+}
+
+@media (max-width: 480px) {
+ header .title-container {
+ order: 3
+ }
+}
+
+header .board-selector-container {
+ min-width: 320px;
+ display: flex;
+ align-items: center
+}
+
+@media (max-width: 480px) {
+ header .board-selector-container {
+ order: 2;
+ min-width: 300px
+ }
+ header .board-selector-container input[type=text] {
+ max-width: 280px
+ }
+}
+
+header .menus-container {
+ min-width: 120px;
+ display: flex;
+ align-items: center;
+ justify-content: flex-end
+}
+
+@media (max-width: 480px) {
+ header .menus-container {
+ order: 1;
+ margin-bottom: 5px;
+ margin-left: auto
+ }
+}
+
+header h1 {
+ font-size: 1.5em
+}
+
+header h1 .tooltip {
+ opacity: 0.3;
+ font-size: 0.7em
+}
+
+a i.web-notification-icon {
+ color: var(--link-color-primary);
+}
+
+a i.web-notification-icon:focus,
+a i.web-notification-icon:hover {
+ color: #000
+}