1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-07 10:38:54 +08:00

add styles to menu

This commit is contained in:
lana-k
2020-09-20 23:40:52 +02:00
parent 0a0407cb04
commit fdf77a7161
5 changed files with 52 additions and 10 deletions

View File

@@ -0,0 +1,24 @@
button.primary {
background: var(--color-accent);
border: 1px solid var(--color-accent-shade);
box-sizing: border-box;
border-radius: var(--border-radius-big);
height: 36px;
padding: 0 12px;
min-width: 83px;
color: var(--color-text-white);
text-shadow: var(--shadow);
font-size: 14px;
font-weight: 600;
cursor: pointer;
}
button.primary:hover {
background: var(--color-accent-shade);
border: 1px solid var(--color-accent-shade);
color: var(--color-text-white);
text-shadow: var(--shadow);
font-size: 14px;
font-weight: 600;
}

View File

@@ -5,9 +5,10 @@
--color-border-light: #DFE8F3;
--color-text-base: #506784;
--color-text-white: #ffffff;
--shadow: 0 1px 2px rgba(43, 63, 95, 0.7);
}
body {
margin: 0;
--shadow: 0 1px 2px rgba(42, 63, 95, 0.7);
--border-radius-big: 5px;
}