1
0
mirror of https://github.com/kremalicious/blowfish.git synced 2025-01-06 11:55:37 +01:00
blowfish/src/renderer/screens/Home.css

61 lines
967 B
CSS
Raw Normal View History

2019-05-08 01:02:02 +02:00
.main {
min-height: 222px;
display: flex;
align-items: center;
flex-wrap: wrap;
position: relative;
}
2019-05-09 00:58:05 +02:00
.preferences-link {
position: absolute;
right: 5%;
top: 1.5rem;
}
.preferences-link svg {
fill: #8b98a9;
2019-05-10 00:37:59 +02:00
transition: .2s ease-out;
2019-05-09 00:58:05 +02:00
width: 1.25rem;
height: 1.25rem;
}
2019-05-10 00:37:59 +02:00
.dark .preferences-link svg {
fill: #8b98a9;
opacity: .5;
}
2019-05-08 01:02:02 +02:00
.number-unit-wrap {
2019-06-04 20:35:37 +02:00
display: grid;
grid-gap: .5rem;
2019-09-07 16:24:44 +02:00
grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
2019-06-04 20:35:37 +02:00
justify-items: start;
2019-05-08 01:02:02 +02:00
width: 100%;
}
.number-unit {
text-align: center;
2019-06-04 20:35:37 +02:00
width: 100%;
2019-05-08 01:02:02 +02:00
}
.label {
color: #8b98a9;
font-size: .85rem;
display: block;
white-space: nowrap;
2019-06-04 22:47:33 +02:00
margin-top: .5rem;
2019-05-08 01:02:02 +02:00
}
.number-unit-wrap--accounts {
min-height: 55px;
2019-06-04 20:35:37 +02:00
padding-top: 2rem;
2019-05-08 01:02:02 +02:00
}
.number-unit--main {
padding-bottom: 5%;
border-bottom: 1px solid #e2e2e2;
}
.dark .number-unit--main {
border-bottom-color: #303030;
}