mirror of
https://github.com/bs-community/blessing-skin-server.git
synced 2024-12-21 06:19:38 +08:00
199 lines
3.9 KiB
SCSS
199 lines
3.9 KiB
SCSS
/*
|
|
* @Author: printempw
|
|
* @Date: 2016-06-04 20:54:53
|
|
* @Last Modified by: printempw
|
|
* @Last Modified time: 2016-08-07 11:26:30
|
|
*/
|
|
|
|
@import "style.scss";
|
|
|
|
body {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.layout-top-nav > .wrapper {
|
|
background-color: #eaeaea;
|
|
// background image settings
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center 0;
|
|
|
|
.main-header {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.main-header .navbar-brand {
|
|
color: #5e5e5e;
|
|
font-family: Minecraft, 'Segoe UI', 'Microsoft Yahei', 'Microsoft Jhenghei', sans-serif;
|
|
border-right: 0;
|
|
}
|
|
|
|
.main-header .navbar .navbar-nav {
|
|
li {
|
|
a {
|
|
border: 0;
|
|
color: #5e5e5e;
|
|
}
|
|
|
|
a:hover {
|
|
background: rgba(0,0,0,0.1);
|
|
color: #f6f6f6;
|
|
}
|
|
|
|
.active > a {
|
|
background: rgba(0,0,0,0.1);
|
|
color: #f6f6f6;
|
|
}
|
|
}
|
|
|
|
.user-menu .user-image {
|
|
border-radius: 10%;
|
|
}
|
|
}
|
|
|
|
.main-header .navbar .navbar-custom-menu .navbar-nav > li {
|
|
a {
|
|
border-left: 0;
|
|
}
|
|
}
|
|
|
|
.navbar {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|
|
|
|
.navbar-header > a {
|
|
color: #5e5e5e;
|
|
}
|
|
|
|
.content-wrapper {
|
|
background-color: transparent;
|
|
border: none;
|
|
}
|
|
|
|
.main-footer {
|
|
background-color: transparent;
|
|
border: none;
|
|
|
|
div {
|
|
color: #fff !important;
|
|
|
|
a {
|
|
color: #fff !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
.nickname {
|
|
color: #5e5e5e;
|
|
}
|
|
|
|
.splash-button {
|
|
color: white;
|
|
padding: 0.8em 2.5em;
|
|
border-radius: 5px;
|
|
background: transparent;
|
|
border: 1px solid #fff;
|
|
font-size: 18px;
|
|
transition: color 0.25s ease-in-out,
|
|
border-color 0.25s ease-in-out,
|
|
background-color 0.25s ease-in-out;
|
|
}
|
|
|
|
.splash-button:hover {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
color: #fff;
|
|
text-decoration: blink;
|
|
}
|
|
|
|
.splash {
|
|
width: 80%;
|
|
height: 50%;
|
|
margin: auto;
|
|
position: absolute;
|
|
top: 100px; left: 0; bottom: 0; right: 0;
|
|
text-align: center;
|
|
}
|
|
|
|
.splash-head {
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
color: white;
|
|
padding: 0.8em 0.5em 1em;
|
|
font-weight: 100;
|
|
line-height: 1.5em;
|
|
margin: 0.2em 0 0.5em;
|
|
font-family: Minecraft, 'Segoe UI', 'Microsoft Yahei', 'Microsoft Jhenghei', sans-serif !important;
|
|
text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
|
|
0px 8px 13px rgba(0,0,0,0.1),
|
|
0px 18px 23px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.splash-subhead {
|
|
font-size: 16px;
|
|
letter-spacing: 0.05em;
|
|
margin-bottom: 3em;
|
|
color: #fff;
|
|
font-family: Ubuntu, 'Segoe UI', 'Microsoft Yahei', 'Microsoft Jhenghei', sans-serif;
|
|
}
|
|
|
|
.navbar-custom-menu .navbar-nav > li {
|
|
a.btn.btn-login {
|
|
background-color: #0078e7;
|
|
color: #fff !important;
|
|
margin-top: 7px;
|
|
margin-left: 10px;
|
|
padding: 8px 20px;
|
|
}
|
|
|
|
a.btn.btn-login:hover,
|
|
a.btn.btn-login:focus {
|
|
background-color: #006acc !important;
|
|
}
|
|
}
|
|
|
|
/* Mobile phone */
|
|
@media (max-width: 48em) {
|
|
.splash-head {
|
|
font-size: 200%;
|
|
}
|
|
.splash {
|
|
width: 100%;
|
|
height: 50%;
|
|
}
|
|
}
|
|
|
|
|
|
@media (min-width: 48em) {
|
|
.splash {
|
|
width: 80%;
|
|
height: 50%;
|
|
}
|
|
|
|
.splash-head {
|
|
font-size: 250%;
|
|
}
|
|
|
|
}
|
|
|
|
@media (min-width: 64em) {
|
|
.splash-head {
|
|
font-size: 300%;
|
|
}
|
|
}
|
|
|
|
.container .button {
|
|
color: white;
|
|
padding: 0.8em 2.5em;
|
|
border-radius: 5px;
|
|
background: transparent;
|
|
border: 1px solid #fff;
|
|
font-size: 120%;
|
|
transition: color 0.25s ease-in-out, border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
|
|
}
|
|
|
|
.container .button:hover {
|
|
background-color: rgba(255, 255, 255, 0.2);
|
|
}
|