p5.js-web-editor/client/styles/components/_toolbar.scss

57 lines
1.0 KiB
SCSS
Raw Normal View History

.toolbar__play-button {
@extend %toolbar-button;
2016-05-12 23:22:54 +02:00
margin-right: #{15 / $base-font-size}rem;
2016-06-10 01:30:59 +02:00
&--selected {
2016-06-10 21:14:55 +02:00
@extend %toolbar-button--selected;
}
2016-06-21 05:04:41 +02:00
& span {
padding-left: #{2 / $base-font-size}rem;
}
2016-05-12 23:22:54 +02:00
}
.toolbar__stop-button {
@extend %toolbar-button;
2016-06-10 01:30:59 +02:00
&--selected {
2016-06-10 21:14:55 +02:00
@extend %toolbar-button--selected;
2016-06-08 22:35:59 +02:00
}
}
2016-06-17 19:37:29 +02:00
.toolbar__preferences-button {
@extend %toolbar-button;
2016-06-21 05:04:41 +02:00
line-height: #{50 / $base-font-size}rem;
2016-06-17 19:37:29 +02:00
margin-left: auto;
&--selected {
@extend %toolbar-button--selected;
}
}
.toolbar__logo {
margin-right: #{30 / $base-font-size}rem;
}
.toolbar {
padding: #{20 / $base-font-size}rem #{60 / $base-font-size}rem;
display: flex;
align-items: center;
}
.toolbar__project-name-container {
border-left: 2px dashed;
margin-left: #{10 / $base-font-size}rem;
padding-left: #{10 / $base-font-size}rem;
height: 70%;
display: flex;
align-items: center;
}
.toolbar__project-name {
2016-07-12 04:00:11 +02:00
color: $light-inactive-text-color;
cursor: pointer;
&:hover {
color: $light-primary-text-color;
}
&:focus {
2016-07-12 04:00:11 +02:00
color: $light-inactive-text-color;
}
2016-06-08 22:35:59 +02:00
}