-
Notifications
You must be signed in to change notification settings - Fork 22
/
_taskbar.scss
64 lines (51 loc) · 1.29 KB
/
_taskbar.scss
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
.aesthetic-windows-95-taskbar {
position: relative;
background-color: $aesthetic-windows-95-gray;
border-top: 1px solid $aesthetic-windows-95-grey-border;
width: 100%;
height: 4vh;
display: flex;
padding: 5px;
.aesthetic-windows-95-taskbar-start {
@extend .aesthetic-windows-95-button;
}
.aesthetic-windows-95-taskbar-start-menu {
@include windows-95-pop-out;
display: none;
position: absolute;
bottom: calc(100% - 5px);
left: 10px;
background-color: $aesthetic-windows-95-grey;
margin: 0;
padding: 0;
list-style-type: none;
&.is-active {
display: block;
}
.aesthetic-windows-95-taskbar-start-menu-item {
padding-top: 1px;
padding-bottom: 1px;
padding-left: 10px;
cursor: pointer;
button {
@include no-button-styles;
}
&:hover, &:focus, &:focus-within {
@include windows-95-focus-outline;
background-color: $aesthetic-windows-95-blue;
color: $aesthetic-windows-95-white;
}
}
}
.aesthetic-windows-95-taskbar-services {
@include windows-95-push-in;
padding: 5px;
margin-left: auto;
margin-right: 5px;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
cursor: pointer;
}
}