mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-14 08:26:22 +00:00
4d7b23bb39
This commit is intended to downgrade codes in JS files used for browser to increase browsers compatibility. This branch is still experimental and may require much more testing.
99 lines
1.3 KiB
CSS
99 lines
1.3 KiB
CSS
html {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.hero {
|
|
background-color: #232629;
|
|
color: #eff0f1;
|
|
}
|
|
|
|
.title {
|
|
color: #eff0f1;
|
|
}
|
|
|
|
.subtitle {
|
|
color: #bdc3c7;
|
|
}
|
|
|
|
.subtitle strong {
|
|
color: #bdc3c7;
|
|
}
|
|
|
|
a {
|
|
color: #3794d2;
|
|
}
|
|
|
|
a:hover {
|
|
color: #60a8dc;
|
|
}
|
|
|
|
hr {
|
|
background-color: #898b8d;
|
|
}
|
|
|
|
.input.is-active,
|
|
.input.is-focused,
|
|
.input:active,
|
|
.input:focus,
|
|
.textarea.is-active,
|
|
.textarea.is-focused,
|
|
.textarea:active,
|
|
.textarea:focus {
|
|
border-color: #3794d2;
|
|
}
|
|
|
|
.table.is-hoverable tbody tr:not(.is-selected):hover {
|
|
background-color: #4d4d4d;
|
|
}
|
|
|
|
.table td,
|
|
.table th {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.help {
|
|
color: #7f8c8d;
|
|
}
|
|
|
|
.input::-moz-placeholder {
|
|
color: #7f8c8d;
|
|
}
|
|
|
|
.input::-webkit-input-placeholder {
|
|
color: #7f8c8d;
|
|
}
|
|
|
|
.input:-moz-placeholder {
|
|
color: #7f8c8d;
|
|
}
|
|
|
|
.input:-ms-input-placeholder {
|
|
color: #7f8c8d;
|
|
}
|
|
|
|
.button.is-breeze {
|
|
background-color: #3794d2;
|
|
border-color: transparent;
|
|
color: #fff;
|
|
}
|
|
|
|
.button.is-breeze.is-hovered,
|
|
.button.is-breeze:hover {
|
|
background-color: #60a8dc;
|
|
border-color: transparent;
|
|
color: #fff;
|
|
}
|
|
|
|
.button.is-breeze.is-active,
|
|
.button.is-breeze:active {
|
|
background-color: #60a8dc;
|
|
border-color: transparent;
|
|
color: #fff;
|
|
}
|
|
|
|
.button.is-breeze.is-focus,
|
|
.button.is-breeze:focus {
|
|
border-color: transparent;
|
|
color: #fff;
|
|
}
|