1
0
mirror of https://github.com/exane/not-gwent-online synced 2024-10-31 10:36:53 +00:00
not-gwent-online/client/scss/_base.scss

164 lines
3.2 KiB
SCSS
Raw Normal View History

2015-07-03 09:36:59 +00:00
@font-face {
font-family: 'Titillium Web';
font-style: normal;
font-weight: 300;
src: local('Titillium WebLight'), local('TitilliumWeb-Light'), url(http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr6YfJ4wTnNoNUCmOpdh16Tg.woff2) format('woff2'), url(http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr1uKlGE8-OjkUKWan_M3D6s.woff) format('woff');
}
@font-face {
font-family: 'Titillium Web';
font-style: normal;
font-weight: 400;
src: local('Titillium Web'), local('TitilliumWeb-Regular'), url(http://fonts.gstatic.com/s/titilliumweb/v4/7XUFZ5tgS-tD6QamInJTceHuglUR2dhBxWD-q_ehMME.woff2) format('woff2'), url(http://fonts.gstatic.com/s/titilliumweb/v4/7XUFZ5tgS-tD6QamInJTcZ_o9VAbKgK36i-4snuAuCM.woff) format('woff');
}
@font-face {
font-family: 'Titillium Web';
font-style: normal;
font-weight: 600;
src: local('Titillium WebSemiBold'), local('TitilliumWeb-SemiBold'), url(http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wpr6d1JQt-lS5nD-1TJX2NNl0.woff2) format('woff2'), url(http://fonts.gstatic.com/s/titilliumweb/v4/anMUvcNT0H1YN4FII8wprx3QmhlKDgQgT1VN2Ed1WFo.woff) format('woff');
}
2015-07-03 17:23:10 +00:00
select {
outline: 0;
border-radius: 0;
}
2015-07-03 09:36:59 +00:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,
html {
height: 100%;
}
body {
2015-07-03 16:57:04 +00:00
background: url(http://80.240.132.120/test/inner-bg.jpg) #162232 center top no-repeat;
2015-07-03 09:36:59 +00:00
width: 100%;
height: 100%;
2015-07-04 08:38:13 +00:00
overflow: visible;
2015-07-03 09:36:59 +00:00
font-family: 'Titillium Web', sans-serif;
2015-07-03 16:16:21 +00:00
}
.card,
.card-small-small {
border-radius: 0;
}
.bbm-wrapper {
2015-07-04 17:02:31 +00:00
background: rgba(6, 13, 22, .5);
//background: rgba(14, 27, 43, 0.5);
2015-07-03 16:16:21 +00:00
padding: 7% 0 0 0;
}
.bbm-modal {
background: transparent;
box-shadow: none;
max-width: 100%;
border-radius: 0;
margin: auto;
2015-07-04 16:30:08 +00:00
background: rgba(6, 13, 22, 0.9);
2015-07-04 17:02:31 +00:00
padding: 20px 0 0 0;
2015-07-03 16:16:21 +00:00
}
.btn-sub {
2015-07-05 10:03:44 +00:00
font-size: 22px;
color: #6a8097;
2015-07-03 16:16:21 +00:00
}
.bbm-modal__topbar {
text-align: center;
}
.bbm-modal__title {
font-size: 26px;
color: #8798ac;
margin: 0 0 20px 0;
}
.bbm-modal__section {
2015-07-04 17:02:31 +00:00
position: relative;
2015-07-05 12:50:31 +00:00
-webkit-transform: translate(-50%, 0px);
2015-07-03 16:16:21 +00:00
transform: translate(-50%, 0px);
left: 50%;
2015-07-03 16:57:04 +00:00
width: 500px;
2015-07-04 16:30:08 +00:00
background: rgba(6, 13, 22, 0.9);
//padding: 15px;
padding: 50px 0;
margin-top: -30px;
2015-07-03 17:23:10 +00:00
}
.card {
cursor: pointer;
2015-07-04 17:54:25 +00:00
}
.rights {
position: fixed;
bottom: 20px;
font-size: 14px;
width: 100%;
text-align: right;
color: #8798ac;
right: 20px;
2015-07-05 11:37:57 +00:00
}
.music-container {
position: fixed;
top: 0;
right: 0;
transition: all .2s ease-in-out 0s;
z-index: 20;
padding: 30px;
&:hover .music-options {
opacity: 1;
visibility: visible;
}
}
.music-icon {
background: url(../../assets/music-mute.png) no-repeat;
float: right;
width: 35px;
height: 33px;
opacity: .8;
cursor: pointer;
transition: all .2s ease-in-out 0s;
&:hover {
opacity: 1;
}
&.active {
background: url(../../assets/music.png) no-repeat;
}
}
.music-options {
float: right;
background: rgba(#000, .5);
padding: 10px 20px;
color: #8798ac;
clear: both;
margin: 15px 0 0 0;
opacity: 0;
visibility: hidden;
width: 170px;
label {
float: left;
margin: 4px 10px 0 0;
}
}
.volume {
width: 40px;
background: #404d5b;
border: 0;
padding: 5px;
float: left;
margin: 0 15px 0 0;
text-align: center;
2015-07-03 09:36:59 +00:00
}