2016-10-21 01:40:39 +02:00
|
|
|
/* Import all components */
|
|
|
|
@import 'semantic';
|
2016-11-02 01:49:39 +01:00
|
|
|
@import 'pxt';
|
2016-10-28 01:15:44 +02:00
|
|
|
@import 'themes/default/globals/site.variables';
|
|
|
|
@import 'themes/pxt/globals/site.variables';
|
|
|
|
@import 'site/globals/site.variables';
|
2016-11-10 19:10:03 +01:00
|
|
|
@import 'themes/default/collections/menu.variables';
|
2016-10-28 01:15:44 +02:00
|
|
|
|
|
|
|
/* Reference import */
|
|
|
|
@import (reference) "semantic.less";
|
|
|
|
|
2016-10-28 01:12:53 +02:00
|
|
|
/*******************************
|
|
|
|
Add your custom CSS here
|
|
|
|
*******************************/
|
2017-01-20 06:08:14 +01:00
|
|
|
/* not relevant in new UI
|
2016-10-28 01:15:44 +02:00
|
|
|
.openproject {
|
|
|
|
background: #4ECC60 !important;
|
2017-01-20 06:08:14 +01:00
|
|
|
} */
|
2016-10-28 01:15:44 +02:00
|
|
|
|
2016-12-23 08:24:53 +01:00
|
|
|
.blocks-menuitem.active, .javascript-menuitem.active {
|
2016-10-28 01:15:44 +02:00
|
|
|
background: #738791 !important;
|
|
|
|
}
|
|
|
|
|
2017-01-20 06:08:14 +01:00
|
|
|
/* not relevant in new UI
|
2016-10-28 01:15:44 +02:00
|
|
|
.help-dropdown-menuitem, .more-dropdown-menuitem {
|
|
|
|
background: #424955 !important;
|
|
|
|
margin-right:0px !important;
|
2017-01-20 06:08:14 +01:00
|
|
|
} */
|
|
|
|
|
|
|
|
.huge.download-button i {
|
|
|
|
display:none !important; // otherwise spans 2 lines
|
2016-10-28 01:15:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.play-button {
|
|
|
|
&:extend(.ui all);
|
|
|
|
&:extend(.button all);
|
|
|
|
&:extend(.blue all);
|
|
|
|
}
|
|
|
|
|
|
|
|
.download-button {
|
|
|
|
&:extend(.ui all);
|
|
|
|
&:extend(.button all);
|
|
|
|
&:extend(.yellow all);
|
|
|
|
}
|
|
|
|
|
2016-11-16 07:35:02 +01:00
|
|
|
#filelist .menu {
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
2017-12-14 20:21:55 +01:00
|
|
|
#downloadArea {
|
|
|
|
background: transparent !important;
|
2016-10-28 01:15:44 +02:00
|
|
|
}
|
|
|
|
|
2016-12-02 08:46:53 +01:00
|
|
|
.organization {
|
|
|
|
top: 1.6em;
|
|
|
|
}
|
2016-10-28 03:43:09 +02:00
|
|
|
|
|
|
|
/* Mobile */
|
2016-12-31 11:15:21 +01:00
|
|
|
@media only screen and (max-width: @largestMobileScreen) {
|
2016-10-28 01:15:44 +02:00
|
|
|
.blocklyTreeLabel {
|
|
|
|
font-size: 0.5rem !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-14 20:21:55 +01:00
|
|
|
|
|
|
|
/* Mobile */
|
|
|
|
@media only screen and (max-width: @largestMobileScreen) {
|
|
|
|
#filelist {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-28 03:43:09 +02:00
|
|
|
/* Tablet */
|
2016-12-31 11:15:21 +01:00
|
|
|
@media only screen and (min-width: @tabletBreakpoint) and (max-width: @largestTabletScreen) {
|
2017-12-14 20:21:55 +01:00
|
|
|
#filelist {
|
|
|
|
background: transparent !important;
|
|
|
|
}
|
2016-10-28 03:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Small Monitor */
|
2016-12-31 11:15:21 +01:00
|
|
|
@media only screen and (min-width: @computerBreakpoint) and (max-width: @largestSmallMonitor) {
|
2016-10-28 03:43:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Large Monitor */
|
2016-12-31 11:15:21 +01:00
|
|
|
@media only screen and (min-width: @largeMonitorBreakpoint) {
|
2016-10-28 03:43:09 +02:00
|
|
|
}
|