mirror of
https://github.com/mgerb/ps-launcher
synced 2026-01-09 01:52:57 +00:00
113 lines
1.5 KiB
SCSS
113 lines
1.5 KiB
SCSS
@import '~toastr/toastr.scss';
|
|
|
|
* {
|
|
&:focus {
|
|
outline: 0;
|
|
}
|
|
}
|
|
|
|
html {
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
}
|
|
|
|
body {
|
|
color: $white;
|
|
background-color: $dark-blue;
|
|
}
|
|
|
|
.fa {
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: $blue;
|
|
transition: all 0.2s linear;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
color: $blue--lighter;
|
|
}
|
|
}
|
|
|
|
.error {
|
|
color: $red;
|
|
}
|
|
|
|
.ellipsis {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.input {
|
|
padding: 10px;
|
|
border: 0;
|
|
border-radius: 4px;
|
|
background: $dark-blue;
|
|
width: 100%;
|
|
color: $white;
|
|
border: 1px solid darken($dark-blue, 5%);
|
|
|
|
&::-webkit-input-placeholder {
|
|
color: $dark-blue--3;
|
|
}
|
|
}
|
|
|
|
.form-group {
|
|
& + & {
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
|
|
.form-group__label {
|
|
font-size: 12px;
|
|
line-height: 20px;
|
|
color: $gray;
|
|
padding-left: 5px;
|
|
}
|
|
|
|
.button {
|
|
border: 0;
|
|
padding: 10px;
|
|
border-radius: 4px;
|
|
background: darken($gray, 5%);
|
|
transition: all 0.2s linear;
|
|
color: $white;
|
|
cursor: pointer;
|
|
|
|
&:hover {
|
|
background: $gray;
|
|
}
|
|
|
|
& + & {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
|
|
.button--success {
|
|
background: $blue;
|
|
|
|
&:hover {
|
|
background: $blue--lighter;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
border-radius: 10px;
|
|
background-color: none;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
height: 5px;
|
|
background-color: none;
|
|
border-radius: 10px;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
border-radius: 10px;
|
|
background-color: darken($dark-blue, 5%);
|
|
}
|