summaryrefslogtreecommitdiff
path: root/pkgs/astal/src/style/widget/launcher.scss
blob: d39f06f98fa36a64cf8daec0da3877bd54819558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.launcher {
	> box {
		padding: 5em;
		background: gtkalpha($base, 0.7);
		border-radius: $outer-radius $outer-radius 0 0;
	}

	.search {
		margin-bottom: 5em;
		color: $text;
		background: $surface;
		padding: $outer-gap;
		border-radius: $outer-radius;
		min-width: 20em;
	}

	.app {
		background: transparent;
		padding: $outer-gap;
		margin: $outer-gap;
		border-radius: $outer-radius;
		min-width: 15em;
		min-height: 15em;

		&:hover,
		&.selected {
			background: gtkalpha($overlay, .5);
		}

		icon {
			font-size: 9em;
		}

		.name {
			margin-top: $outer-gap;
			font-size: 1.25em;
			color: gtkalpha($text, 0.9);
		}
	}

}