1
0
mirror of https://github.com/mgerb/ps-launcher synced 2026-01-11 02:52:49 +00:00

wip - add/edit server with modal

This commit is contained in:
2017-10-26 23:39:46 -05:00
parent 5db4b138e0
commit 0df1e284f9
10 changed files with 282 additions and 50 deletions

View File

@@ -31,22 +31,72 @@ a {
}
}
::-webkit-scrollbar-track
{
border-radius: 10px;
.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 {
width: 5px;
height: 5px;
background-color: none;
border-radius: 10px;
}
::-webkit-scrollbar-thumb
{
border-radius: 10px;
background-color: darken($dark-blue, 5%);
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: darken($dark-blue, 5%);
}