mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-24 23:37:18 +00:00

Change-type: patch Changelog-entry: Rework target selector modal Signed-off-by: Lorenzo Alberto Maria Ambrosi <lorenzothunder.ambrosi@gmail.com>
107 lines
2.2 KiB
SCSS
107 lines
2.2 KiB
SCSS
/*
|
|
* Copyright 2016 balena.io
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
$icon-font-path: "../../../../node_modules/bootstrap-sass/assets/fonts/bootstrap/";
|
|
$font-size-base: 16px;
|
|
$cursor-disabled: initial;
|
|
$link-hover-decoration: none;
|
|
$btn-min-width: 170px;
|
|
$link-color: #ddd;
|
|
$disabled-opacity: 0.2;
|
|
|
|
@import "../../../../node_modules/flexboxgrid/dist/flexboxgrid.css";
|
|
@import "../../../../node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
|
|
@import "./modules/theme";
|
|
@import "./modules/bootstrap";
|
|
@import "./modules/space";
|
|
@import "./components/label";
|
|
@import "./components/tick";
|
|
@import "../pages/main/styles/main";
|
|
@import "../pages/finish/styles/finish";
|
|
@import "./desktop";
|
|
|
|
@font-face {
|
|
font-family: "SourceSansPro";
|
|
src: url("./fonts/SourceSansPro-Regular.ttf") format("truetype");
|
|
font-weight: 500;
|
|
font-style: normal;
|
|
font-display: block;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: "SourceSansPro";
|
|
src: url("./fonts/SourceSansPro-SemiBold.ttf") format("truetype");
|
|
font-weight: 600;
|
|
font-style: normal;
|
|
font-display: block;
|
|
}
|
|
|
|
body {
|
|
letter-spacing: 0.1px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: "SourceSansPro";
|
|
|
|
> header {
|
|
flex: 0 0 auto;
|
|
}
|
|
|
|
> main {
|
|
flex: 1;
|
|
display: flex;
|
|
}
|
|
|
|
> footer {
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|
|
|
|
.section-loader {
|
|
webview {
|
|
flex: 0 1;
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
|
|
&.isFinish webview {
|
|
flex: initial;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 320px;
|
|
}
|
|
}
|
|
|
|
.featured-project {
|
|
webview {
|
|
flex: 0 1;
|
|
height: 0;
|
|
width: 0;
|
|
}
|
|
|
|
&.fp-visible webview {
|
|
width: 480px;
|
|
height: 360px;
|
|
position: absolute;
|
|
z-index: 1;
|
|
left: 30px;
|
|
top: 45px;
|
|
border-radius: 7px;
|
|
overflow: hidden;
|
|
}
|
|
}
|