Skip to content

Commit 66d271e

Browse files
committed
test
1 parent 9c4f3ce commit 66d271e

File tree

1 file changed

+57
-51
lines changed

1 file changed

+57
-51
lines changed
Lines changed: 57 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,100 @@
11
.empty-button {
2-
@extend %button-shared;
3-
width: 120px;
2+
@extend %button-shared;
3+
width: 120px;
44
}
55

66
.state-dropdown {
7-
width: 240px;
8-
margin-left: 20px;
7+
width: 240px;
8+
margin-left: 20px;
99
}
1010

1111
.action-component:hover .time-button {
12-
display: none;
12+
display: none;
1313
}
1414

1515
.action-component:hover .jump-button {
16-
opacity: 1;
17-
transform: rotateX(0deg);
18-
transition: opacity 300ms, transform 0.15s linear;
16+
opacity: 1;
17+
transform: rotateX(0deg);
18+
transition: opacity 300ms, transform 0.15s linear;
1919
}
2020

2121
.time-button {
22-
outline: none;
23-
height: 20px;
24-
margin-bottom: 8px;
25-
width: 70px;
26-
border: none;
27-
border-radius: 3px;
28-
background-color: #565A61;
29-
font: normal 11px monaco, Consolas, "Lucida Console", monospace, Arial, sans-serif;
30-
color: #B0B0B0;
22+
outline: none;
23+
height: 20px;
24+
margin-bottom: 8px;
25+
width: 70px;
26+
border: none;
27+
border-radius: 3px;
28+
background-color: #565a61;
29+
font: normal 11px monaco, Consolas, 'Lucida Console', monospace, Arial,
30+
sans-serif;
31+
color: #b0b0b0;
3132
}
3233

3334
.jump-button {
34-
@extend %button-shared;
35-
margin-bottom: 8px;
36-
width: 50px;
37-
opacity: 0;
38-
transform: rotateX(90deg);
39-
transition: opacity 300ms, transform 0.15s linear;
35+
@extend %button-shared;
36+
margin-bottom: 8px;
37+
width: 50px;
38+
opacity: 0;
39+
transform: rotateX(90deg);
40+
transition: opacity 300ms, transform 0.15s linear;
4041
}
4142

4243
.jump-button:hover {
43-
// remove the blue border when button is clicked
44-
background-color: $highlight-color;
44+
// remove the blue border when button is clicked
45+
background-color: $highlight-color;
4546
}
4647

4748
.empty-button:hover {
48-
background-color: $highlight-color;
49+
background-color: $highlight-color;
4950
}
5051

5152
.play-button {
52-
@extend %button-shared;
53-
width: 100px;
54-
margin: 0 1% 0 2%;
53+
@extend %button-shared;
54+
width: 100px;
55+
margin: 0 1% 0 2%;
5556
}
5657

5758
.backward-button {
58-
@extend %button-shared;
59-
width: 30px;
60-
margin: 7px;
59+
@extend %button-shared;
60+
width: 30px;
61+
margin: 7px;
6162
}
6263

6364
.forward-button {
64-
@extend %button-shared;
65-
width: 30px;
66-
margin: 7px;
65+
@extend %button-shared;
66+
width: 30px;
67+
margin: 7px;
6768
}
6869

6970
.import-button,
7071
.export-button,
7172
.lock-button,
7273
.pause-button,
7374
.persist-button {
74-
@extend %button-shared;
75+
@extend %button-shared;
7576
}
7677

7778
%button-shared {
78-
outline: none;
79-
background-color: $brand-color;
80-
color: white;
81-
display: flex;
82-
justify-content: center;
83-
align-items: center;
84-
height: 20px;
85-
border-style: solid;
86-
border-width: 1px;
87-
border-radius: 3px;
88-
cursor: pointer;
89-
line-height: 1.5em;
90-
font: normal 13px monaco, Consolas, "Lucida Console", monospace, Arial, sans-serif;
91-
font-size: $button-text-size;
79+
outline: none;
80+
// background-color: $brand-color;
81+
color: white;
82+
display: flex;
83+
justify-content: center;
84+
align-items: center;
85+
height: 20px;
86+
// border-style: solid;
87+
// border-width: 1px;
88+
// border-radius: 3px;
89+
cursor: pointer;
90+
// line-height: 1.5em;
91+
font: normal 13px monaco, Consolas, 'Lucida Console', monospace, Arial,
92+
sans-serif;
93+
font-size: $button-text-size;
94+
padding: 1em;
95+
border-radius: 51px;
96+
background: #00fbff;
97+
box-shadow: inset -30px -30px 100px #00a1a3, inset 30px 30px 100px #00ffff;
9298

93-
@extend %disable-highlight;
99+
@extend %disable-highlight;
94100
}

0 commit comments

Comments
 (0)