aboutsummaryrefslogtreecommitdiff
path: root/.config/eww/panel/style.scss
blob: 0f399596afc936d5d3146480c008acad1ab22969 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
.panel {
  background-color: $borderColor;
  padding: $borderSize;

  .button {
    background-color: $borderColor;
    border-radius: $borderRadius;
    margin-left: 10;
    padding: 8;

    &:first-child {
      margin-left: 0;
    }
  }
}

.panel-buttons {
  button {
    background-color: $borderColor;
    border-radius: $borderRadius;
    margin-left: 14;
    padding: 7 9;

    &:first-child {
      margin-left: 0;
    }
  }
}

.panel-checkbox {
  image {
    margin-right: 10;
  }
}

.panel-header {
  margin-bottom: 14;
}

.panel-section {
  background-color: $bgColor;
  border-radius: $borderRadius;
  margin-top: $borderSize;
  padding: 14;

  &:first-child {
    margin-top: 0;
  }
}

.panel-slider {
  margin-left: 10;

  trough {
    background-color: $borderColor;
    border-radius: 5;
    min-height: 10px;
    min-width: 232px;

    highlight {
      border-radius: 5;
      background-color: #414868;
    }
  }
}

.panel-wallpaper {
  border: 3px solid $borderColor;
}