mirror of
https://github.com/wassname/keras-js.git
synced 2026-09-23 13:20:45 +08:00
61 lines
1.1 KiB
CSS
61 lines
1.1 KiB
CSS
@import 'https://fonts.googleapis.com/css?family=Inconsolata';
|
|
@import 'https://fonts.googleapis.com/css?family=Fira+Sans';
|
|
@import 'https://fonts.googleapis.com/css?family=Nothing+You+Could+Do';
|
|
|
|
@import './_variables.css';
|
|
|
|
body {
|
|
background: linear-gradient(0deg, #CCCCCC, #F0F0F0);
|
|
color: $color-3;
|
|
min-height: 100vh;
|
|
font-family: $font-1;
|
|
}
|
|
|
|
.title {
|
|
width: 100%;
|
|
color: $color-1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.subtitle {
|
|
color: $color-3;
|
|
}
|
|
|
|
.demo {
|
|
padding: 50px 30px;
|
|
|
|
.loading-progress {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
padding: 30px;
|
|
color: $color-1;
|
|
font-size: 18px;
|
|
font-family: $font-2;
|
|
padding: 20px 50px;
|
|
margin: 30px;
|
|
background: rgba(255, 255, 255, 0.5);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
/****************************************************************/
|
|
/* MDL overrides */
|
|
|
|
.mdl-switch__label {
|
|
font-size: 14px !important;
|
|
color: #69707a;
|
|
}
|
|
|
|
.mdl-switch.is-checked {
|
|
.mdl-switch__thumb {
|
|
background: rgba(27, 188, 155, 0.6);
|
|
}
|
|
|
|
.mdl-switch__track {
|
|
background: rgba(27, 188, 155, 0.3);
|
|
}
|
|
}
|
|
}
|