mirror of
https://github.com/siwa-net/my-finance-pal.git
synced 2024-11-10 00:51:56 +01:00
Button styles, Cards
This commit is contained in:
parent
3fec33e5ca
commit
200445793c
5 changed files with 9 additions and 10 deletions
|
@ -2,6 +2,7 @@
|
|||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
height: 250px;
|
||||
background: skyblue;
|
||||
padding: 32px;
|
||||
border-radius: 4px;
|
||||
box-shadow: var(--box-shadow-lev-1);
|
||||
}
|
||||
|
|
|
@ -7,6 +7,5 @@
|
|||
.ListItems {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
border: 1px solid green;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
}
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
padding: 16px;
|
||||
box-shadow: 0px -8px 24px 0px #555;
|
||||
box-shadow: var(--box-shadow-lev-2);
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
|
|
@ -7,4 +7,5 @@
|
|||
|
||||
margin-inline: auto;
|
||||
width: var(--content-width);
|
||||
padding: 32px 0px;
|
||||
}
|
||||
|
|
|
@ -9,6 +9,10 @@
|
|||
--background-start-rgb: 214, 219, 220;
|
||||
--background-end-rgb: 255, 255, 255;
|
||||
|
||||
--box-shadow-color: #ddd;
|
||||
--box-shadow-lev-1: 0px 2px 8px 0px var(--box-shadow-color);
|
||||
--box-shadow-lev-2: 0px 2px 16px 0px var(--box-shadow-color);
|
||||
|
||||
--primary-glow: conic-gradient(
|
||||
from 180deg at 50% 50%,
|
||||
#16abff33 0deg,
|
||||
|
@ -98,9 +102,3 @@ a {
|
|||
/* color-scheme: dark; */
|
||||
}
|
||||
}
|
||||
|
||||
main {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 32px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue