website/css/minecraft.css

261 lines
5.1 KiB
CSS
Raw Normal View History

2015-02-16 12:55:56 +00:00
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
src: local('Montserrat-Regular'), url(https://themes.googleusercontent.com/static/fonts/montserrat/v4/zhcz-_WihjSQC0oHJ9TCYBsxEYwM7FgeyaSgU71cLG0.woff) format('woff');
}
2014-10-17 18:59:45 +00:00
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 700;
2014-11-11 18:23:42 +00:00
src: local('Montserrat-Bold'), url(https://themes.googleusercontent.com/static/fonts/montserrat/v4/IQHow_FEYlDC4Gzy_m8fcgFhaRv2pGgT5Kf0An0s4MM.woff) format('woff');
2014-10-17 18:59:45 +00:00
}
2015-02-16 12:55:56 +00:00
@font-face {
font-family: 'Merriweather Sans';
font-style: normal;
font-weight: 300;
src: local('Merriweather Sans Light'), local('MerriweatherSans-Light'), url(https://fonts.gstatic.com/s/merriweathersans/v5/6LmGj5dOJopQKEkt88Gowby3qP8l_EZEfCX16eKT4TP3rGVtsTkPsbDajuO5ueQw.woff) format('woff');
}
2015-02-16 00:08:17 +00:00
html, body {
2015-02-15 22:55:04 +00:00
width: 100%;
height: 100%;
2015-02-16 00:08:17 +00:00
margin: 0;
padding: 0;
}
body {
2015-02-16 12:55:56 +00:00
font-family: 'Merriweather Sans', sans-serif;
2015-02-15 22:55:04 +00:00
color: #fff;
background: #000;
webkit-tap-highlight-color: rgba(255,255,255,.2);
2015-02-16 02:31:26 +00:00
-webkit-animation: fadein 1.5s;
2015-02-16 02:42:12 +00:00
-moz-animation: fadein 1.5s rotate(0.01deg);
2015-02-16 02:31:26 +00:00
-ms-animation: fadein 1.5s;
-o-animation: fadein 1.5s;
animation: fadein 1.5s;
2015-02-16 02:39:03 +00:00
-webkit-transform: translateZ(0);
-webkit-backface-visibility: hidden;
2015-02-16 02:49:27 +00:00
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
h2 {
2015-02-15 23:38:29 +00:00
margin: 0 0 15px;
2015-02-15 22:55:04 +00:00
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
letter-spacing: 1px;
text-align: center;
2015-02-16 13:26:24 +00:00
font-size: 21px;
2014-10-17 18:59:45 +00:00
}
p {
2015-02-15 22:55:04 +00:00
margin: 0 0 15px;
2015-02-15 23:38:29 +00:00
line-height: 1.5;
2015-02-15 22:55:04 +00:00
text-align: center;
2014-10-17 18:59:45 +00:00
}
2015-02-16 13:13:34 +00:00
a {
text-decoration: none;
color: #4a6f28;
-webkit-transition: all .2s ease-in-out;
-moz-transition: all .2s ease-in-out;
transition: all .2s ease-in-out;
}
2014-10-17 18:59:45 +00:00
a:hover,
a:focus {
2015-02-16 13:13:34 +00:00
color: #5b8731;
2014-10-17 18:59:45 +00:00
}
2015-02-16 11:33:01 +00:00
#intro {
display: table;
width: 100%;
height: 100%;
color: #fff;
2015-02-16 11:58:33 +00:00
background-color: #5b8731;
background-image: linear-gradient(90deg, rgba(74,111,40,.3) 50%, transparent 50%),
linear-gradient(rgba(62,92,32,.2) 50%, transparent 50%);
2015-02-16 11:50:28 +00:00
background-size: 20px 20px;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
#intro-body {
2015-02-15 22:55:04 +00:00
display: table-cell;
vertical-align: middle;
text-align: center;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
#logo {
2015-02-15 23:32:23 +00:00
font-size: 35px;
2015-02-15 22:55:04 +00:00
text-transform: uppercase;
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
font-weight: 700;
letter-spacing: 1px;
text-align: center;
margin: 0;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
h1 {
2015-02-15 23:42:46 +00:00
font-size: 13px;
2015-02-15 22:55:04 +00:00
text-transform: uppercase;
2015-02-16 12:35:42 +00:00
font-family: Montserrat,"Helvetica Neue",Helvetica,Arial,sans-serif;
2015-02-16 01:08:08 +00:00
font-weight: 400;
2015-02-16 01:21:34 +00:00
margin-top: 0;
margin-bottom: 16px;
2015-02-16 01:24:07 +00:00
line-height: 6px;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
#btn-circle {
2015-02-15 23:24:12 +00:00
display: inline-block;
2015-02-15 23:32:23 +00:00
width: 30px;
height: 30px;
line-height: 30px;
2015-02-15 23:24:12 +00:00
border: 1px solid #fff;
2015-02-15 23:08:17 +00:00
border-radius: 50%;
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
2015-02-16 00:13:04 +00:00
font-size: 15px;
2015-02-15 22:55:04 +00:00
color: #fff;
background: none;
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
text-decoration: none;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
#btn-circle:hover,
#btn-circle:focus {
2015-02-15 22:55:04 +00:00
outline: 0;
2015-02-15 23:08:17 +00:00
color: #fff;
2015-02-15 22:55:04 +00:00
background: rgba(255,255,255,.1);
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
#about {
2015-02-15 22:55:04 +00:00
width: 100%;
2015-02-16 11:43:26 +00:00
height: 100%;
2015-02-15 22:55:04 +00:00
color: #fff;
display: table;
background: #000;
2014-10-17 18:59:45 +00:00
}
2015-02-16 01:08:08 +00:00
#about-body {
2015-02-15 22:55:04 +00:00
display: table-cell;
vertical-align: middle;
2015-02-15 23:41:06 +00:00
padding-left: 10px;
padding-right: 10px;
padding-top: 30px;
padding-bottom: 30px;
2015-02-15 23:42:46 +00:00
font-size: 13px;
2015-02-16 00:26:17 +00:00
text-align: center;
2014-10-17 18:59:45 +00:00
}
::-moz-selection {
2015-02-15 22:55:04 +00:00
background: #fcfcfc;
background: rgba(255,255,255,.2);
2014-10-17 18:59:45 +00:00
}
::selection {
2015-02-15 22:55:04 +00:00
background: #fcfcfc;
background: rgba(255,255,255,.2);
2014-10-17 18:59:45 +00:00
}
2015-02-16 10:53:21 +00:00
input {
2015-02-16 11:58:33 +00:00
border: 1px solid #4a6f28;
color: #4a6f28;
2015-02-15 22:55:04 +00:00
background: none;
padding: 7px;
2015-02-16 13:26:24 +00:00
width: 80px;
2015-02-16 12:55:56 +00:00
font-family: 'Merriweather Sans', sans-serif;
2015-02-15 23:44:20 +00:00
font-size: 13px;
2015-02-15 23:38:29 +00:00
margin: 15px 0 0 0;
2015-02-15 22:55:04 +00:00
-moz-border-radius: 0px 3px 3px 0px;
-webkit-border-radius: 0px 3px 3px 0px;
border-radius: 0px 3px 3px 0px;
2015-02-15 23:08:17 +00:00
-webkit-transition: background .3s ease-in-out;
-moz-transition: background .3s ease-in-out;
transition: background .3s ease-in-out;
2014-11-11 19:14:40 +00:00
}
2015-02-16 10:53:21 +00:00
input:hover,
input:focus {
2015-02-16 11:58:33 +00:00
border: 1px solid #4a6f28;
2015-02-15 22:55:04 +00:00
outline: 0;
color: #000;
2015-02-16 11:58:33 +00:00
background: #4a6f28;
2014-11-11 19:19:06 +00:00
}
#ipbox {
2015-02-16 11:58:33 +00:00
border: 1px solid #4a6f28;
2015-02-15 22:55:04 +00:00
color: #000;
2015-02-16 11:58:33 +00:00
background: #4a6f28;
2015-02-15 22:55:04 +00:00
padding: 7px;
2015-02-15 23:38:29 +00:00
margin: 15px 0 0 0;
2015-02-15 23:44:20 +00:00
font-size: 13px;
2015-02-15 22:55:04 +00:00
-moz-border-radius: 3px 0px 0px 3px;
-webkit-border-radius: 3px 0px 0px 3px;
border-radius: 3px 0px 0px 3px;
2014-11-11 20:23:26 +00:00
}
2015-02-16 12:14:33 +00:00
@media(min-width:767px){
h2{
margin:0 0 25px;
2015-02-16 13:26:24 +00:00
font-size:33px;
2015-02-15 23:38:29 +00:00
}
2015-02-16 12:14:33 +00:00
p{
margin:0 0 20px;
line-height:1.5;
2014-11-14 21:37:00 +00:00
}
2015-02-16 12:14:33 +00:00
#intro{
2015-02-16 11:43:26 +00:00
background-size:30px 30px;
}
2015-02-16 12:14:33 +00:00
#about-body{
padding-left:90px;
padding-right:90px;
padding-top:40px;
padding-bottom:40px;
2015-02-16 12:55:56 +00:00
font-size:18px;
2015-02-16 12:14:33 +00:00
}
input{
2015-02-16 12:55:56 +00:00
font-size:18px;
2015-02-16 12:14:33 +00:00
margin:25px 0 0 0;
2015-02-16 13:26:24 +00:00
width:113px;
2015-02-16 12:14:33 +00:00
}
#ipbox{
2015-02-16 12:55:56 +00:00
font-size:18px;
2015-02-16 12:14:33 +00:00
margin:25px 0 0 0;
}
#btn-circle{
font-size:29px;
width:60px;
height:60px;
line-height:60px;
border:2px solid #fff;
}
#logo{
font-size:100px;
}
h1{
font-size:25px;
margin-bottom:45px;
2014-11-14 21:37:00 +00:00
}
2015-02-15 22:31:44 +00:00
}
2015-02-16 11:50:28 +00:00
@keyframes fadein{
from{opacity:0;}
to{opacity:1;}
2015-02-16 01:49:53 +00:00
}
2015-02-16 11:50:28 +00:00
@-moz-keyframes fadein{
from{opacity:0;}
to{opacity:1;}
2015-02-16 01:49:53 +00:00
}
2015-02-16 11:50:28 +00:00
@-webkit-keyframes fadein{
from{opacity:0;}
to{opacity:1;}
2015-02-16 01:49:53 +00:00
}
2015-02-16 11:50:28 +00:00
@-ms-keyframes fadein{
from{opacity:0;}
to{opacity:1;}
2015-02-16 01:49:53 +00:00
}