-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path_tabs.scss
111 lines (79 loc) · 2.03 KB
/
_tabs.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.aesthetic-windows-95-tabbed-container {
.aesthetic-windows-95-tabbed-container-tabs {
display: flex;
height: 28px;
width: 100%;
.aesthetic-windows-95-tabbed-container-tabs-button {
@include windows-95-pop-out;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-color: transparent;
box-shadow: 1px 0 0 0 $aesthetic-windows-95-black;
background-color: $aesthetic-windows-95-grey;
color: $aesthetic-windows-95-black;
height: 26px;
text-align: center;
z-index: 0;
margin-left: 1px;
padding-left: 4px;
padding-right: 4px;
&:first-child {
margin-left: 2px;
}
&.is-active {
position: relative;
left: 0;
bottom: 1px;
height: 29px;
margin-left: -2px;
z-index: 1;
&:first-child {
margin-left: 0px;
}
}
button {
@include no-button-styles;
padding: 2px;
width: 100%;
&:focus {
@include windows-95-focus-outline;
}
}
}
}
}
.aesthetic-windows-xp-tabbed-container {
.aesthetic-windows-xp-tabbed-container-tabs {
display: flex;
height: 28px;
width: 100%;
.aesthetic-windows-xp-tabbed-container-tabs-button {
background-color: $aesthetic-windows-xp-white;
border: 1px solid;
border-color: $aesthetic-windows-xp-border-light;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
border-bottom-color: transparent;
padding-left: 10px;
padding-right: 10px;
text-align: center;
outline: 0;
&.is-active {
position: relative;
height: 30px;
bottom: 3px;
border-top: 2px solid;
border-top-color: $aesthetic-windows-xp-light-orange;
z-index: 1;
}
button {
@include no-button-styles;
padding: 2px;
width: 100%;
&:focus {
@include windows-xp-focus-outline;
}
}
}
}
}