summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/style.styl
blob: 3cd36482e450b3711fec093f8b3cf85dd9e30f23 (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
43
44
@import "../app"
@import "../reset"

@import "./ui"

*::input-placeholder
	color #D8CBC5

*:focus
	outline none

html
	height 100%
	background #f7f7f7

	&, *
		&::-webkit-scrollbar
			width 6px
			height 6px

		&::-webkit-scrollbar-thumb
			background rgba(0, 0, 0, 0.2)

			&:hover
				background rgba(0, 0, 0, 0.4)

			&:active
				background $theme-color

	&[data-darkmode]
		background #191B22

		&, *
			&::-webkit-scrollbar-track
				background-color #282C37

			&::-webkit-scrollbar-thumb
				background-color #454954

				&:hover
					background-color #535660

				&:active
					background-color $theme-color