Compare commits
3 commits
f481147cdd
...
e8d5660bb8
Author | SHA1 | Date | |
---|---|---|---|
e8d5660bb8 | |||
4c6a8176f2 | |||
bbce54f461 |
6 changed files with 37 additions and 29 deletions
|
@ -1,9 +1,9 @@
|
||||||
@import 'scss/bar.scss';
|
@import "scss/bar.scss";
|
||||||
@import 'scss/general.scss';
|
@import "scss/general.scss";
|
||||||
@import 'scss/widgets.scss';
|
@import "scss/widgets.scss";
|
||||||
|
|
||||||
* {
|
* {
|
||||||
all: unset;
|
all: unset;
|
||||||
margin: 3px;
|
margin: 3px;
|
||||||
font-family: 'Monaspace Krypton';
|
font-family: "Monaspace Krypton";
|
||||||
}
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
@import 'colors.scss';
|
@import "colors.scss";
|
||||||
|
|
||||||
window {
|
window {
|
||||||
background-color: $background;
|
background-color: $background;
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
@import 'colors.scss';
|
@import "colors.scss";
|
||||||
|
|
||||||
@mixin widget {
|
@mixin widget {
|
||||||
color: $white
|
color: $white;
|
||||||
};
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
@include widget();
|
@include widget();
|
||||||
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
.workspaces {
|
.workspaces {
|
||||||
@include widget();
|
@include widget();
|
||||||
};
|
}
|
||||||
|
|
||||||
.media {
|
.media {
|
||||||
@include widget();
|
@include widget();
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
* {
|
* {
|
||||||
transition: 200ms ease-out;
|
all: unset;
|
||||||
color: #cdd6f4;
|
transition: 200ms ease-out;
|
||||||
font-family: Monaspace Krypton;
|
color: #cdd6f4;
|
||||||
font-size: 1.0rem;
|
font-family: JetBrainsMono NF Medium;
|
||||||
}
|
font-size: 1.1rem;
|
||||||
|
}
|
||||||
|
|
||||||
#window,
|
#window,
|
||||||
#match,
|
#match,
|
||||||
|
@ -13,18 +14,25 @@
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
|
|
||||||
#match:selected {
|
#main {
|
||||||
background:#2ac3de;
|
margin-top: 0.5rem;
|
||||||
border-radius: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
box#main {
|
#match:hover,
|
||||||
background: #1a1b26;
|
#match:selected {
|
||||||
border: 1px solid #f7768e;
|
background: #45475a;
|
||||||
border-radius: 24px;
|
border-radius: 5px;
|
||||||
padding: 8px;
|
padding: 0.4rem
|
||||||
}
|
}
|
||||||
|
|
||||||
entry#entry {
|
entry#entry {
|
||||||
border-color: transparent;
|
border-color: transparent;
|
||||||
|
margin-top: 0.5rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
box#main {
|
||||||
|
background: #1e1e2e;
|
||||||
|
border: 3px solid #f5c2e7;
|
||||||
|
border-radius: 12px;
|
||||||
|
padding: 0.3rem;
|
||||||
}
|
}
|
|
@ -1,6 +1,6 @@
|
||||||
_: {
|
_: {
|
||||||
virtualisation.oci-containers.containers.wallos = {
|
virtualisation.oci-containers.containers.wallos = {
|
||||||
image = "bellamy/wallos@sha256:d3846ab980095be55a3c07633cca905bf29505bc63e5d92ad49938f56fd7b9f7";
|
image = "bellamy/wallos@sha256:18f77ed070788052fb7fb2417a398f96cdd1dbb1ac7c2907531544082090bd66"; #v 1.6.0
|
||||||
ports = ["8282:80"];
|
ports = ["8282:80"];
|
||||||
volumes = [
|
volumes = [
|
||||||
"/home/notoh/docker/wallos/db:/var/www/html/db"
|
"/home/notoh/docker/wallos/db:/var/www/html/db"
|
||||||
|
|
Loading…
Reference in a new issue