diff options
Diffstat (limited to 'Neutron-trunk/resources/css/admin_v2/navigation.css')
-rw-r--r-- | Neutron-trunk/resources/css/admin_v2/navigation.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/Neutron-trunk/resources/css/admin_v2/navigation.css b/Neutron-trunk/resources/css/admin_v2/navigation.css new file mode 100644 index 0000000..e3d93d1 --- /dev/null +++ b/Neutron-trunk/resources/css/admin_v2/navigation.css @@ -0,0 +1,51 @@ +#nav-header { + display: grid; + grid-template-columns: 64px 1fr; + margin: 30px 20px; + cursor: default; +} + +#nav-header-icon { + background: rgba(17, 17, 17, .5); + width: 64px; + height: 64px; + border-radius: 999px; +} + +#nav-header-names-outer { + margin-left: 15px; + display: flex; + align-items: center; +} + +.nav-item-icon { + vertical-align: middle; + width: 24px; + margin-left: 10px; +} + +.nav-item-name { + vertical-align: middle; + margin-left: 5px; +} + +.nav-item { + padding: 7px 0; + border-left: 3px solid transparent; + border-radius: 5px; + margin-left: 5px; + cursor: default; +} + +.nav-item.selected { + background: rgba(200, 200, 200, .25); + border-left: 3px solid var(--codename-light); +} + +.nav-item:not(.selected):hover { + background: rgba(200, 200, 200, .1); +} + +.nav-item:not(.selected):focus, .nav-item:not(.selected):active { + background: rgba(200, 200, 200, .25); +}
\ No newline at end of file |