mirror of
https://github.com/Stream4me/stream4me.github.io.git
synced 2025-06-05 21:49:15 +02:00
594
css/style.css
Normal file
594
css/style.css
Normal file
@@ -0,0 +1,594 @@
|
||||
/*
|
||||
Theme Name: Alstar
|
||||
Theme URL: https://bootstrapmade.com/alstar-free-parallax-bootstrap-template/
|
||||
Author: BootstrapMade.com
|
||||
Author URL: https://bootstrapmade.com
|
||||
*/
|
||||
|
||||
/* ================================
|
||||
Imports
|
||||
================================= */
|
||||
@import url('font-awesome.min.css');
|
||||
@import url('simpletextrotator.css');
|
||||
@import url('overwrite.css');
|
||||
@import url('animate.css');
|
||||
|
||||
/* ================================
|
||||
General
|
||||
================================= */
|
||||
|
||||
body{
|
||||
text-align: center;
|
||||
font-family: 'Open Sans', sans-serif;
|
||||
font-size: 14px;
|
||||
line-height: 1.6em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 36px;
|
||||
}
|
||||
h2 {
|
||||
font-size: 32px;
|
||||
}
|
||||
h3 {
|
||||
font-size: 28px;
|
||||
}
|
||||
h4 {
|
||||
font-size: 24px;
|
||||
}
|
||||
h5 {
|
||||
font-size: 20px;
|
||||
}
|
||||
h6 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{
|
||||
color: #3a3a3a;
|
||||
font-weight: 700;
|
||||
margin-bottom: 20px;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
}
|
||||
|
||||
|
||||
.lead{
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
button {
|
||||
display: inline-block;
|
||||
margin-bottom: 0;
|
||||
margin-bottom: 10px;
|
||||
padding: 6px 12px;
|
||||
border: 1px solid transparent;
|
||||
vertical-align: middle;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
font-weight: normal;
|
||||
font-size: 14px;
|
||||
line-height: 1.428571429;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
-o-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
button.navbar-toggle {
|
||||
border: none;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.btn{
|
||||
font-family: "Raleway", sans-serif;
|
||||
font-weight: 500;
|
||||
font-size: 14px;
|
||||
letter-spacing: 1px;
|
||||
display: inline-block;
|
||||
padding: 12px 32px;
|
||||
transition: 0.5s;
|
||||
line-height: 1;
|
||||
margin: 20px auto;
|
||||
-webkit-animation-delay: 0.8s;
|
||||
animation-delay: 0.8s;
|
||||
}
|
||||
|
||||
.btn:hover {
|
||||
border-color: #0081c2;
|
||||
background: #0081c2;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
|
||||
/* ================================
|
||||
margin, padding
|
||||
================================= */
|
||||
.mar-top0 {
|
||||
margin-top: 0;
|
||||
}
|
||||
.mar-top10 {
|
||||
margin-top: 10px;
|
||||
}
|
||||
.mar-top20 {
|
||||
margin-top: 20px;
|
||||
}
|
||||
.mar-top30 {
|
||||
margin-top: 30px;
|
||||
}
|
||||
.mar-top40 {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
|
||||
/* Back to top button */
|
||||
.back-to-top {
|
||||
position: fixed;
|
||||
display: none;
|
||||
padding: 6px 12px 9px 12px;
|
||||
font-size: 16px;
|
||||
border-radius: 2px;
|
||||
right: 15px;
|
||||
bottom: 15px;
|
||||
transition: background 0.5s;
|
||||
z-index:1000;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.back-to-top {
|
||||
bottom: 15px;
|
||||
}
|
||||
}
|
||||
|
||||
.back-to-top:focus {
|
||||
outline: none;
|
||||
}
|
||||
|
||||
/* ================================
|
||||
Navbar
|
||||
================================= */
|
||||
|
||||
nav.navbar{
|
||||
position: fixed;
|
||||
top: -72px;
|
||||
margin-bottom: 0px;
|
||||
padding: 10px 0px 10px 0px;
|
||||
width: 100%;
|
||||
border-radius: 0px;
|
||||
transition: all 0.2s;
|
||||
background-color: #181818;
|
||||
}
|
||||
|
||||
.navbar-nav{
|
||||
float: right;
|
||||
}
|
||||
|
||||
nav.navbar.fixed-to-top{
|
||||
top: 0px;
|
||||
}
|
||||
|
||||
.navbar-default{
|
||||
border: none;
|
||||
border-bottom: none;
|
||||
opacity: 1;
|
||||
display: none;
|
||||
z-index: 9999;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav>li>a {
|
||||
color: #fff;
|
||||
font-weight: 700;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.navbar-default .navbar-nav>li>a:hover, .navbar-default .navbar-nav>li>a:focus{
|
||||
color: #0081c2;
|
||||
cursor: pointer;
|
||||
-webkit-transition: all 300ms ease-in-out;
|
||||
-moz-transition: all 300ms ease-in-out;
|
||||
-ms-transition: all 300ms ease-in-out;
|
||||
-o-transition: all 300ms ease-in-out;
|
||||
transition: all 300ms ease-in-out;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
/* brand / logo */
|
||||
.navbar-default .navbar-brand{
|
||||
color: #fff;
|
||||
text-transform: uppercase;
|
||||
font-weight: 700;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
/* ================================
|
||||
Home sections
|
||||
================================= */
|
||||
|
||||
.home-section {
|
||||
width: 100%;
|
||||
padding: 150px 0px 150px 0px;
|
||||
}
|
||||
|
||||
/* --- heading --- */
|
||||
.section-heading {
|
||||
margin-bottom: 50px;
|
||||
}
|
||||
|
||||
.section-heading h2 {
|
||||
font-size: 38px;
|
||||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.section-heading .heading-line {
|
||||
margin:0 auto;
|
||||
display: block;
|
||||
height: 1px;
|
||||
width: 80px;
|
||||
background: #333;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
|
||||
/* --- section bg var --- */
|
||||
|
||||
.bg-gray {
|
||||
background: #f8f8f8;
|
||||
}
|
||||
|
||||
.bg-dark {
|
||||
background: #181818;
|
||||
}
|
||||
|
||||
.bg-middledark{
|
||||
background: #232323;
|
||||
}
|
||||
|
||||
.bg-dark .heading-line,
|
||||
.bg-middledark .heading-line{
|
||||
margin:0 auto;
|
||||
display: block;
|
||||
height: 1px;
|
||||
width: 80px;
|
||||
background: #f8f8f8;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
/* --- section content general color --- */
|
||||
|
||||
.color-light h1,.color-light h2,.color-light h3,.color-light h4,.color-light h5,.color-light h6 {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
.color-light li {
|
||||
color: #eee;
|
||||
text-align: left
|
||||
}
|
||||
|
||||
|
||||
/* ==========================
|
||||
Download
|
||||
============================= */
|
||||
|
||||
#download{
|
||||
background-color: #181818;
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#download h2{
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#download ul{
|
||||
display: block;
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#download li{
|
||||
margin-bottom:5px;
|
||||
}
|
||||
|
||||
#download .btn {
|
||||
color: #fff;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
|
||||
#download .btn:hover {
|
||||
border-color: #0081c2;
|
||||
background: #0081c2;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/* ==========================
|
||||
Guide
|
||||
============================= */
|
||||
|
||||
#guide{
|
||||
color: #fff;
|
||||
background: url('../img/screenshot1.jpg') no-repeat center center;
|
||||
background-size: cover;
|
||||
border-top: 1px solid #0081c2;
|
||||
}
|
||||
|
||||
#guide h2{
|
||||
color: #fff
|
||||
}
|
||||
|
||||
#guide .col-md-6{
|
||||
text-align: left
|
||||
}
|
||||
|
||||
#guide .btn {
|
||||
margin:20px 0;
|
||||
display: table;
|
||||
color: #fff;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
|
||||
#guide .btn:hover {
|
||||
border-color: #0081c2;
|
||||
background: #0081c2;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#guide i{
|
||||
font-size:30px;
|
||||
padding-right:10px
|
||||
}
|
||||
|
||||
#guide i, #guide span{
|
||||
display: table-cell;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
|
||||
/* ================================
|
||||
Intro
|
||||
================================= */
|
||||
|
||||
#intro {
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
background-color: #181818;
|
||||
}
|
||||
|
||||
#intro img{
|
||||
position: absolute;
|
||||
max-width: 500px;
|
||||
height: auto;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%)
|
||||
}
|
||||
|
||||
@media (max-width:768px) {
|
||||
#intro img{width:50%}
|
||||
}
|
||||
|
||||
|
||||
#intro .btn {
|
||||
position:absolute;
|
||||
width:200px;
|
||||
left: calc(50% - 100px);
|
||||
bottom : 30px;
|
||||
color: #fff;
|
||||
border: 2px solid #fff;
|
||||
}
|
||||
|
||||
#intro .btn:hover {
|
||||
border-color: #0081c2;
|
||||
background: #0081c2;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.description-img {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.description-img img {
|
||||
margin-left: -15px;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.description-img {
|
||||
height: auto;
|
||||
}
|
||||
.description-img img {
|
||||
margin-left: 0;
|
||||
padding-bottom: 30px;
|
||||
}
|
||||
}
|
||||
|
||||
#description .content h2 {
|
||||
color: #333;
|
||||
font-weight: 300;
|
||||
font-size: 24px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#description .content h3 {
|
||||
color: #777;
|
||||
font-weight: 300;
|
||||
font-size: 18px;
|
||||
line-height: 26px;
|
||||
font-style: italic;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#description .content p {
|
||||
line-height: 26px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
#description .content p:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* ================================
|
||||
Contact
|
||||
================================= */
|
||||
|
||||
#contacts .btn {
|
||||
display: table;
|
||||
color: #0081c2;
|
||||
border: 2px solid #0081c2;
|
||||
}
|
||||
|
||||
#contacts .btn:hover {
|
||||
border-color: #0081c2;
|
||||
background: #0081c2;
|
||||
color: #fff;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#contacts i{
|
||||
font-size:30px;
|
||||
padding-right:10px
|
||||
}
|
||||
|
||||
#contacts i, #contacts span{
|
||||
display: table-cell;
|
||||
vertical-align: middle
|
||||
}
|
||||
|
||||
/* ================================
|
||||
Clients
|
||||
================================= */
|
||||
ul.clients {
|
||||
list-style: none;
|
||||
}
|
||||
ul.clients li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
|
||||
/* ================================
|
||||
Bottom widget
|
||||
================================= */
|
||||
#bottom-widget {
|
||||
overflow: hidden;
|
||||
}
|
||||
ul.social-network {
|
||||
margin: 0;
|
||||
margin-left:0;
|
||||
padding-left: 0;
|
||||
list-style: none;
|
||||
}
|
||||
ul.social-network li {
|
||||
display: inline;
|
||||
margin: 5px 5px;
|
||||
}
|
||||
|
||||
|
||||
ul.social-network li a:hover span .fa-circle {
|
||||
color: #2b2b2b;
|
||||
}
|
||||
|
||||
ul.social-network li a i{
|
||||
transition: 0.3s
|
||||
}
|
||||
/* ================================
|
||||
Footer
|
||||
================================= */
|
||||
footer {
|
||||
color: #ccc;
|
||||
padding: 50px 0 30px;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
footer a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
footer a:hover {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
/* ================================
|
||||
more media queries
|
||||
================================= */
|
||||
|
||||
@media (max-width:768px) {
|
||||
|
||||
header{
|
||||
padding-bottom: 50px;
|
||||
min-height: 1000px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.navbar-nav {
|
||||
float: left;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.box-team, .box-team img {
|
||||
text-align: center;
|
||||
}
|
||||
.box-team img {
|
||||
float: none;
|
||||
margin:0 auto;
|
||||
}
|
||||
.box-team {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.og-fullimg { display: none; }
|
||||
.og-details { float: none; width: 100%; padding: 0 40px; }
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:992px) {
|
||||
|
||||
.service.carousel .item h4, .service.carousel .item p{
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.service p{
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
.og-expander {
|
||||
background: transparent;
|
||||
|
||||
}
|
||||
.og-details {
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@media (max-width:480px){
|
||||
|
||||
header .carousel-iphone, .detail .screenshot{
|
||||
width: 280px;
|
||||
}
|
||||
|
||||
header .carousel, .detail .screenshot img{
|
||||
padding-top: 85px;
|
||||
width: 245px;
|
||||
}
|
||||
|
||||
.service .screenshot img{
|
||||
margin-top: -12px;
|
||||
padding-top: 0px;
|
||||
}
|
||||
|
||||
header{
|
||||
padding-top: 30px;
|
||||
padding-bottom: 0px;
|
||||
}
|
||||
|
||||
header h1{
|
||||
font-size: 70px;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user