This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
display: flex; | |
display: -webkit-flex; | |
justify-content: center; | |
-webkit-justify-content: center; | |
align-items: center; | |
-webkit-align-items: center; | |
flex-direction: column; | |
-webkit-flex-direction: column; | |
-webkit-align-self: center; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.horizontal-line { | |
position: relative; | |
} | |
.horizontal-line::before { | |
position: absolute; | |
top: 50%; | |
right: 100%; | |
overflow: hidden; | |
width: 150%; | |
height: 1px; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo -i gedit /etc/hosts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*bounce arrow scroll*/ | |
@keyframes bounce-scroll { | |
0%, 20%, 50%, 80%, 100% { | |
transform: translateY(0); | |
} | |
40% { | |
transform: translateY(-30px); | |
} | |
60% { | |
transform: translateY(-15px); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="row no-gutters sekcje"> | |
<div class="col-xs-12 col-sm-6 col-md-6 d-flex align-items-center justify-content-center"> | |
<h2 class="head-main-section-blue">Lorem ipsum</h2> | |
</div> | |
<div class="col-xs-12 col-sm-6 col-md-6 d-flex align-items-center"> | |
<p class="par text-left">Lorem Ipsum</p> | |
</div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php if ( is_front_page() && is_home() ) : ?> | |
<h1 class="navbar-brand mb-0"><a rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php echo '<img src="'.get_bloginfo('template_directory').'/img/logo-small.png" ?>' ?></a></h1> | |
<?php else : ?> | |
<a class="navbar-brand" rel="home" href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>"><?php echo '<img src="'.get_bloginfo('template_directory').'/img/logo-small.png" ?>' ?></a> | |
<?php endif; ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="row"> | |
/// mobile-first! | |
<div class="col-3 col-md-6"> | |
<div class="card card-body">1</div> | |
</div> | |
<div class="col-6 col-md-12 order-2 order-md-12"> ///kolejność order-*-* | |
<div class="card card-body">3</div> | |
</div> | |
<div class="col-3 col-md-6 order-3"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*<h1> | |
<a href="" class="typewrite" data-period="500" data-type='[ "Hi, Im Si.", "I am Creative.", "I Love Design.", "I Love to Develop." ]'> | |
<span class="wrap"></span> | |
</a> | |
</h1>*/ | |
var TxtType = function(el, toRotate, period) { | |
this.toRotate = toRotate; | |
this.el = el; | |
this.loopNum = 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://getbootstrap.com/docs/4.0/utilities/display/ |
OlderNewer